Skip to content

Commit

Permalink
Update generated files with build 127020
Browse files Browse the repository at this point in the history
  • Loading branch information
Microsoft Graph DevX Tooling authored and Microsoft Graph DevX Tooling committed Oct 17, 2023
1 parent 674eb42 commit 8fe7bda
Show file tree
Hide file tree
Showing 13,146 changed files with 227,007 additions and 71,792 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
652 changes: 324 additions & 328 deletions lib/.kiota.log

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions lib/admin/admin_request_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
require_relative '../models/o_data_errors_o_data_error'
require_relative './admin'
require_relative './edge/edge_request_builder'
require_relative './people/people_request_builder'
require_relative './service_announcement/service_announcement_request_builder'
require_relative './sharepoint/sharepoint_request_builder'

Expand All @@ -19,6 +20,11 @@ def edge()
return MicrosoftGraph::Admin::Edge::EdgeRequestBuilder.new(@path_parameters, @request_adapter)
end
##
# Provides operations to manage the people property of the microsoft.graph.admin entity.
def people()
return MicrosoftGraph::Admin::People::PeopleRequestBuilder.new(@path_parameters, @request_adapter)
end
##
# Provides operations to manage the serviceAnnouncement property of the microsoft.graph.admin entity.
def service_announcement()
return MicrosoftGraph::Admin::ServiceAnnouncement::ServiceAnnouncementRequestBuilder.new(@path_parameters, @request_adapter)
Expand Down Expand Up @@ -105,6 +111,15 @@ def to_patch_request_information(body, request_configuration=nil)
request_info.set_content_from_parsable(@request_adapter, "application/json", body)
return request_info
end
##
## 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.
## @return a admin_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return AdminRequestBuilder.new(raw_url, @request_adapter)
end

##
# Get admin
Expand Down
9 changes: 9 additions & 0 deletions lib/admin/edge/edge_request_builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,15 @@ def to_patch_request_information(body, request_configuration=nil)
request_info.set_content_from_parsable(@request_adapter, "application/json", body)
return request_info
end
##
## 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.
## @return a edge_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return EdgeRequestBuilder.new(raw_url, @request_adapter)
end

##
# A container for Microsoft Edge resources. Read-only.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,15 @@ def to_patch_request_information(body, request_configuration=nil)
request_info.set_content_from_parsable(@request_adapter, "application/json", body)
return request_info
end
##
## 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.
## @return a internet_explorer_mode_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return InternetExplorerModeRequestBuilder.new(raw_url, @request_adapter)
end

##
# A container for Internet Explorer mode resources.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ def to_get_request_information(request_configuration=nil)
end
return request_info
end
##
## 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.
## @return a count_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return CountRequestBuilder.new(raw_url, @request_adapter)
end

##
# Get the number of the resource
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def initialize(path_parameters, request_adapter)
super(path_parameters, request_adapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}{?%24select,%24expand}")
end
##
## Delete a browserSiteList object.
## Delete a browserSiteList object. This API is available in the following national cloud deployments.
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a Fiber of void
##
Expand All @@ -60,7 +60,7 @@ def delete(request_configuration=nil)
return @request_adapter.send_async(request_info, nil, error_mapping)
end
##
## Get a browserSiteList that contains browserSite and browserSharedCookie resources.
## Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a Fiber of browser_site_list
##
Expand All @@ -74,7 +74,7 @@ def get(request_configuration=nil)
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::BrowserSiteList.create_from_discriminator_value(pn) }, error_mapping)
end
##
## Update the properties of a browserSiteList object.
## Update the properties of a browserSiteList object. This API is available in the following national cloud deployments.
## @param body The request body
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a Fiber of browser_site_list
Expand All @@ -90,7 +90,7 @@ def patch(body, request_configuration=nil)
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::BrowserSiteList.create_from_discriminator_value(pn) }, error_mapping)
end
##
## Delete a browserSiteList object.
## Delete a browserSiteList object. This API is available in the following national cloud deployments.
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a request_information
##
Expand All @@ -106,7 +106,7 @@ def to_delete_request_information(request_configuration=nil)
return request_info
end
##
## Get a browserSiteList that contains browserSite and browserSharedCookie resources.
## Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a request_information
##
Expand All @@ -124,7 +124,7 @@ def to_get_request_information(request_configuration=nil)
return request_info
end
##
## Update the properties of a browserSiteList object.
## Update the properties of a browserSiteList object. This API is available in the following national cloud deployments.
## @param body The request body
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a request_information
Expand All @@ -143,9 +143,18 @@ def to_patch_request_information(body, request_configuration=nil)
request_info.set_content_from_parsable(@request_adapter, "application/json", body)
return request_info
end
##
## 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.
## @return a browser_site_list_item_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return BrowserSiteListItemRequestBuilder.new(raw_url, @request_adapter)
end

##
# Get a browserSiteList that contains browserSite and browserSharedCookie resources.
# Get a browserSiteList that contains browserSite and browserSharedCookie resources. This API is available in the following national cloud deployments.
class BrowserSiteListItemRequestBuilderGetQueryParameters

##
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ class PublishPostRequestBody
# The sites property
@sites
##
## Gets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
## Gets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
## @return a i_dictionary
##
def additional_data
return @additional_data
end
##
## Sets the additionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
## @param value Value to set for the additionalData property.
## Sets the AdditionalData property value. Stores additional data not described in the OpenAPI description found when deserializing. Can be used for serialization as well.
## @param value Value to set for the AdditionalData property.
## @return a void
##
def additional_data=(value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def initialize(path_parameters, request_adapter)
super(path_parameters, request_adapter, "{+baseurl}/admin/edge/internetExplorerMode/siteLists/{browserSiteList%2Did}/publish")
end
##
## Publish the specified browserSiteList for devices to download.
## Publish the specified browserSiteList for devices to download. This API is available in the following national cloud deployments.
## @param body The request body
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a Fiber of browser_site_list
Expand All @@ -46,7 +46,7 @@ def post(body, request_configuration=nil)
return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::BrowserSiteList.create_from_discriminator_value(pn) }, error_mapping)
end
##
## Publish the specified browserSiteList for devices to download.
## Publish the specified browserSiteList for devices to download. This API is available in the following national cloud deployments.
## @param body The request body
## @param request_configuration Configuration for the request such as headers, query parameters, and middleware options.
## @return a request_information
Expand All @@ -65,6 +65,15 @@ def to_post_request_information(body, request_configuration=nil)
request_info.set_content_from_parsable(@request_adapter, "application/json", body)
return request_info
end
##
## 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.
## @return a publish_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return PublishRequestBuilder.new(raw_url, @request_adapter)
end
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,15 @@ def to_get_request_information(request_configuration=nil)
end
return request_info
end
##
## 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.
## @return a count_request_builder
##
def with_url(raw_url)
raise StandardError, 'raw_url cannot be null' if raw_url.nil?
return CountRequestBuilder.new(raw_url, @request_adapter)
end

##
# Get the number of the resource
Expand Down
Loading

0 comments on commit 8fe7bda

Please sign in to comment.