Class: MicrosoftGraph::DeviceManagement::GetEffectivePermissionsWithScope::GetEffectivePermissionsWithScopeRequestBuilder::GetEffectivePermissionsWithScopeRequestBuilderGetQueryParameters
- Inherits:
-
Object
- Object
- MicrosoftGraph::DeviceManagement::GetEffectivePermissionsWithScope::GetEffectivePermissionsWithScopeRequestBuilder::GetEffectivePermissionsWithScopeRequestBuilderGetQueryParameters
- Defined in:
- lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb
Overview
Retrieves the effective permissions of the currently authenticated user
Instance Attribute Summary collapse
-
#count ⇒ Object
Include count of items.
-
#filter ⇒ Object
Filter items by property values.
-
#search ⇒ Object
Search items by search phrases.
-
#skip ⇒ Object
Skip the first n items.
-
#top ⇒ Object
Show only the first n items.
Instance Method Summary collapse
-
#get_query_parameter(original_name) ⇒ Object
Maps the query parameters names to their encoded names for the URI template parsing.
Instance Attribute Details
#count ⇒ Object
Include count of items
63 64 65 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 63 def count @count end |
#filter ⇒ Object
Filter items by property values
66 67 68 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 66 def filter @filter end |
#search ⇒ Object
Search items by search phrases
69 70 71 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 69 def search @search end |
#skip ⇒ Object
Skip the first n items
72 73 74 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 72 def skip @skip end |
#top ⇒ Object
Show only the first n items
75 76 77 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 75 def top @top end |
Instance Method Details
#get_query_parameter(original_name) ⇒ Object
Maps the query parameters names to their encoded names for the URI template parsing.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/device_management/get_effective_permissions_with_scope/get_effective_permissions_with_scope_request_builder.rb', line 81 def get_query_parameter(original_name) raise StandardError, 'original_name cannot be null' if original_name.nil? case original_name when "count" return "%24count" when "filter" return "%24filter" when "search" return "%24search" when "skip" return "%24skip" when "top" return "%24top" else return original_name end end |