Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions msgraph_beta/generated/admin/admin_request_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from ..models.admin import Admin
from ..models.o_data_errors.o_data_error import ODataError
from .apps_and_services.apps_and_services_request_builder import AppsAndServicesRequestBuilder
from .cloud_licensing.cloud_licensing_request_builder import CloudLicensingRequestBuilder
from .configuration_management.configuration_management_request_builder import ConfigurationManagementRequestBuilder
from .dynamics.dynamics_request_builder import DynamicsRequestBuilder
from .edge.edge_request_builder import EdgeRequestBuilder
Expand Down Expand Up @@ -133,6 +134,15 @@ def apps_and_services(self) -> AppsAndServicesRequestBuilder:

return AppsAndServicesRequestBuilder(self.request_adapter, self.path_parameters)

@property
def cloud_licensing(self) -> CloudLicensingRequestBuilder:
"""
Provides operations to manage the cloudLicensing property of the microsoft.graph.admin entity.
"""
from .cloud_licensing.cloud_licensing_request_builder import CloudLicensingRequestBuilder

return CloudLicensingRequestBuilder(self.request_adapter, self.path_parameters)

@property
def configuration_management(self) -> ConfigurationManagementRequestBuilder:
"""
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,209 @@
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.cloud_licensing.allotment import Allotment
from ....models.cloud_licensing.allotment_collection_response import AllotmentCollectionResponse
from ....models.o_data_errors.o_data_error import ODataError
from .count.count_request_builder import CountRequestBuilder
from .item.allotment_item_request_builder import AllotmentItemRequestBuilder

class AllotmentsRequestBuilder(BaseRequestBuilder):
"""
Provides operations to manage the allotments property of the microsoft.graph.cloudLicensing.adminCloudLicensing entity.
"""
def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, dict[str, Any]]) -> None:
"""
Instantiates a new AllotmentsRequestBuilder 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}/admin/cloudLicensing/allotments{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}", path_parameters)

def by_allotment_id(self,allotment_id: str) -> AllotmentItemRequestBuilder:
"""
Provides operations to manage the allotments property of the microsoft.graph.cloudLicensing.adminCloudLicensing entity.
param allotment_id: The unique identifier of allotment
Returns: AllotmentItemRequestBuilder
"""
if allotment_id is None:
raise TypeError("allotment_id cannot be null.")
from .item.allotment_item_request_builder import AllotmentItemRequestBuilder

url_tpl_params = get_path_parameters(self.path_parameters)
url_tpl_params["allotment%2Did"] = allotment_id
return AllotmentItemRequestBuilder(self.request_adapter, url_tpl_params)

async def get(self,request_configuration: Optional[RequestConfiguration[AllotmentsRequestBuilderGetQueryParameters]] = None) -> Optional[AllotmentCollectionResponse]:
"""
Get a list of the allotment objects and their properties.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[AllotmentCollectionResponse]
Find more info here: https://learn.microsoft.com/graph/api/cloudlicensing-admincloudlicensing-list-allotments?view=graph-rest-beta
"""
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.cloud_licensing.allotment_collection_response import AllotmentCollectionResponse

return await self.request_adapter.send_async(request_info, AllotmentCollectionResponse, error_mapping)

async def post(self,body: Allotment, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> Optional[Allotment]:
"""
Create new navigation property to allotments for admin
param body: The request body
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: Optional[Allotment]
"""
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.cloud_licensing.allotment import Allotment

return await self.request_adapter.send_async(request_info, Allotment, error_mapping)

def to_get_request_information(self,request_configuration: Optional[RequestConfiguration[AllotmentsRequestBuilderGetQueryParameters]] = None) -> RequestInformation:
"""
Get a list of the allotment objects and their properties.
param request_configuration: Configuration for the request such as headers, query parameters, and middleware options.
Returns: RequestInformation
"""
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: Allotment, request_configuration: Optional[RequestConfiguration[QueryParameters]] = None) -> RequestInformation:
"""
Create new navigation property to allotments for admin
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) -> AllotmentsRequestBuilder:
"""
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: AllotmentsRequestBuilder
"""
if raw_url is None:
raise TypeError("raw_url cannot be null.")
return AllotmentsRequestBuilder(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 AllotmentsRequestBuilderGetQueryParameters():
"""
Get a list of the allotment objects and their properties.
"""
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 AllotmentsRequestBuilderGetRequestConfiguration(RequestConfiguration[AllotmentsRequestBuilderGetQueryParameters]):
"""
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 AllotmentsRequestBuilderPostRequestConfiguration(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)


Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __init__(self,request_adapter: RequestAdapter, path_parameters: Union[str, d
param request_adapter: The request adapter to use to execute the requests.
Returns: None
"""
super().__init__(request_adapter, "{+baseurl}/admin/configurationManagement/configurationApplications/$count{?%24filter,%24search}", path_parameters)
super().__init__(request_adapter, "{+baseurl}/admin/cloudLicensing/allotments/$count{?%24filter,%24search}", path_parameters)

async def get(self,request_configuration: Optional[RequestConfiguration[CountRequestBuilderGetQueryParameters]] = None) -> Optional[int]:
"""
Expand Down
Loading