Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 26c77d9

Browse files
committed
- renames request adapter and client to align with other languages
1 parent 4d5f1ee commit 26c77d9

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

lib/microsoft_graph_request_adapter.rb renamed to lib/graph_request_adapter.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'microsoft_kiota_abstractions'
33
require_relative 'version_information'
44
module MicrosoftGraph
5-
class MicrosoftGraphRequestAdapter < MicrosoftGraphCore::GraphRequestAdapterBase
5+
class GraphRequestAdapter < MicrosoftGraphCore::GraphRequestAdapterBase
66
def initialize(authentication_provider, client_options=MicrosoftGraphCore::GraphClientOptions.new, parse_node_factory=MicrosoftKiotaAbstractions::ParseNodeFactoryRegistry.default_instance, serialization_writer_factory=MicrosoftKiotaAbstractions::SerializationWriterFactoryRegistry.default_instance, client = nil)
77
options = MicrosoftGraphCore::GraphClientOptions.new
88
options.graph_service_library_version = "v" + MicrosoftGraph::VersionInformation::VERSION

lib/graph_service_client.rb

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
require_relative 'graph_base_service_client'
2+
module MicrosoftGraph
3+
class GraphServiceClient < MicrosoftGraph::GraphBaseServiceClient
4+
#TODO define sugar constructors acception the authentication provider
5+
#TODO shim me
6+
end
7+
end

lib/microsoft_graph_service_client.rb

Lines changed: 0 additions & 7 deletions
This file was deleted.

0 commit comments

Comments
 (0)