Class: MicrosoftGraph::Users::Item::Authentication::AuthenticationRequestBuilder
- Inherits:
-
MicrosoftKiotaAbstractions::BaseRequestBuilder
- Object
- MicrosoftKiotaAbstractions::BaseRequestBuilder
- MicrosoftGraph::Users::Item::Authentication::AuthenticationRequestBuilder
- Defined in:
- lib/users/item/authentication/authentication_request_builder.rb
Overview
Provides operations to manage the authentication property of the microsoft.graph.user entity.
Defined Under Namespace
Classes: AuthenticationRequestBuilderGetQueryParameters
Instance Method Summary collapse
-
#delete(request_configuration = nil) ⇒ Object
Delete navigation property authentication for users.
-
#email_methods ⇒ Object
Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity.
-
#email_methods_by_id(id) ⇒ Object
Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity.
-
#fido2_methods ⇒ Object
Provides operations to manage the fido2Methods property of the microsoft.graph.authentication entity.
-
#fido2_methods_by_id(id) ⇒ Object
Provides operations to manage the fido2Methods property of the microsoft.graph.authentication entity.
-
#get(request_configuration = nil) ⇒ Object
The authentication methods that are supported for the user.
-
#initialize(path_parameters, request_adapter) ⇒ Object
constructor
Instantiates a new AuthenticationRequestBuilder and sets the default values.
-
#methods ⇒ Object
Provides operations to manage the methods property of the microsoft.graph.authentication entity.
-
#methods_by_id(id) ⇒ Object
Provides operations to manage the methods property of the microsoft.graph.authentication entity.
-
#microsoft_authenticator_methods ⇒ Object
Provides operations to manage the microsoftAuthenticatorMethods property of the microsoft.graph.authentication entity.
-
#microsoft_authenticator_methods_by_id(id) ⇒ Object
Provides operations to manage the microsoftAuthenticatorMethods property of the microsoft.graph.authentication entity.
-
#operations ⇒ Object
Provides operations to manage the operations property of the microsoft.graph.authentication entity.
-
#operations_by_id(id) ⇒ Object
Provides operations to manage the operations property of the microsoft.graph.authentication entity.
-
#password_methods ⇒ Object
Provides operations to manage the passwordMethods property of the microsoft.graph.authentication entity.
-
#password_methods_by_id(id) ⇒ Object
Provides operations to manage the passwordMethods property of the microsoft.graph.authentication entity.
-
#patch(body, request_configuration = nil) ⇒ Object
Update the navigation property authentication in users.
-
#phone_methods ⇒ Object
Provides operations to manage the phoneMethods property of the microsoft.graph.authentication entity.
-
#phone_methods_by_id(id) ⇒ Object
Provides operations to manage the phoneMethods property of the microsoft.graph.authentication entity.
-
#software_oath_methods ⇒ Object
Provides operations to manage the softwareOathMethods property of the microsoft.graph.authentication entity.
-
#software_oath_methods_by_id(id) ⇒ Object
Provides operations to manage the softwareOathMethods property of the microsoft.graph.authentication entity.
-
#temporary_access_pass_methods ⇒ Object
Provides operations to manage the temporaryAccessPassMethods property of the microsoft.graph.authentication entity.
-
#temporary_access_pass_methods_by_id(id) ⇒ Object
Provides operations to manage the temporaryAccessPassMethods property of the microsoft.graph.authentication entity.
-
#to_delete_request_information(request_configuration = nil) ⇒ Object
Delete navigation property authentication for users.
-
#to_get_request_information(request_configuration = nil) ⇒ Object
The authentication methods that are supported for the user.
-
#to_patch_request_information(body, request_configuration = nil) ⇒ Object
Update the navigation property authentication in users.
-
#windows_hello_for_business_methods ⇒ Object
Provides operations to manage the windowsHelloForBusinessMethods property of the microsoft.graph.authentication entity.
-
#windows_hello_for_business_methods_by_id(id) ⇒ Object
Provides operations to manage the windowsHelloForBusinessMethods property of the microsoft.graph.authentication entity.
Constructor Details
#initialize(path_parameters, request_adapter) ⇒ Object
Instantiates a new AuthenticationRequestBuilder and sets the default values.
93 94 95 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 93 def initialize(path_parameters, request_adapter) super(path_parameters, request_adapter, "{+baseurl}/users/{user%2Did}/authentication{?%24select,%24expand}") end |
Instance Method Details
#delete(request_configuration = nil) ⇒ Object
Delete navigation property authentication for users
101 102 103 104 105 106 107 108 109 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 101 def delete(request_configuration=nil) request_info = self.to_delete_request_information( request_configuration ) error_mapping = Hash.new error_mapping["4XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, nil, error_mapping) end |
#email_methods ⇒ Object
Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity.
39 40 41 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 39 def email_methods() return MicrosoftGraph::Users::Item::Authentication::EmailMethods::EmailMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#email_methods_by_id(id) ⇒ Object
Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity.
115 116 117 118 119 120 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 115 def email_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["emailAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::EmailMethods::Item::EmailAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#fido2_methods ⇒ Object
Provides operations to manage the fido2Methods property of the microsoft.graph.authentication entity.
44 45 46 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 44 def fido2_methods() return MicrosoftGraph::Users::Item::Authentication::Fido2Methods::Fido2MethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#fido2_methods_by_id(id) ⇒ Object
Provides operations to manage the fido2Methods property of the microsoft.graph.authentication entity.
126 127 128 129 130 131 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 126 def fido2_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["fido2AuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::Fido2Methods::Item::Fido2AuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#get(request_configuration = nil) ⇒ Object
The authentication methods that are supported for the user.
137 138 139 140 141 142 143 144 145 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 137 def get(request_configuration=nil) request_info = self.to_get_request_information( request_configuration ) error_mapping = Hash.new error_mapping["4XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::Authentication.create_from_discriminator_value(pn) }, error_mapping) end |
#methods ⇒ Object
Provides operations to manage the methods property of the microsoft.graph.authentication entity.
49 50 51 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 49 def methods() return MicrosoftGraph::Users::Item::Authentication::Methods::MethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#methods_by_id(id) ⇒ Object
Provides operations to manage the methods property of the microsoft.graph.authentication entity.
151 152 153 154 155 156 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 151 def methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["authenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::Methods::Item::AuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#microsoft_authenticator_methods ⇒ Object
Provides operations to manage the microsoftAuthenticatorMethods property of the microsoft.graph.authentication entity.
54 55 56 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 54 def microsoft_authenticator_methods() return MicrosoftGraph::Users::Item::Authentication::MicrosoftAuthenticatorMethods::MicrosoftAuthenticatorMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#microsoft_authenticator_methods_by_id(id) ⇒ Object
Provides operations to manage the microsoftAuthenticatorMethods property of the microsoft.graph.authentication entity.
162 163 164 165 166 167 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 162 def microsoft_authenticator_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["microsoftAuthenticatorAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::MicrosoftAuthenticatorMethods::Item::MicrosoftAuthenticatorAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#operations ⇒ Object
Provides operations to manage the operations property of the microsoft.graph.authentication entity.
59 60 61 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 59 def operations() return MicrosoftGraph::Users::Item::Authentication::Operations::OperationsRequestBuilder.new(@path_parameters, @request_adapter) end |
#operations_by_id(id) ⇒ Object
Provides operations to manage the operations property of the microsoft.graph.authentication entity.
173 174 175 176 177 178 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 173 def operations_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["longRunningOperation%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::Operations::Item::LongRunningOperationItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#password_methods ⇒ Object
Provides operations to manage the passwordMethods property of the microsoft.graph.authentication entity.
64 65 66 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 64 def password_methods() return MicrosoftGraph::Users::Item::Authentication::PasswordMethods::PasswordMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#password_methods_by_id(id) ⇒ Object
Provides operations to manage the passwordMethods property of the microsoft.graph.authentication entity.
184 185 186 187 188 189 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 184 def password_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["passwordAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::PasswordMethods::Item::PasswordAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#patch(body, request_configuration = nil) ⇒ Object
Update the navigation property authentication in users
196 197 198 199 200 201 202 203 204 205 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 196 def patch(body, request_configuration=nil) raise StandardError, 'body cannot be null' if body.nil? request_info = self.to_patch_request_information( body, request_configuration ) error_mapping = Hash.new error_mapping["4XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrors::ODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::Authentication.create_from_discriminator_value(pn) }, error_mapping) end |
#phone_methods ⇒ Object
Provides operations to manage the phoneMethods property of the microsoft.graph.authentication entity.
69 70 71 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 69 def phone_methods() return MicrosoftGraph::Users::Item::Authentication::PhoneMethods::PhoneMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#phone_methods_by_id(id) ⇒ Object
Provides operations to manage the phoneMethods property of the microsoft.graph.authentication entity.
211 212 213 214 215 216 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 211 def phone_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["phoneAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::PhoneMethods::Item::PhoneAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#software_oath_methods ⇒ Object
Provides operations to manage the softwareOathMethods property of the microsoft.graph.authentication entity.
74 75 76 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 74 def software_oath_methods() return MicrosoftGraph::Users::Item::Authentication::SoftwareOathMethods::SoftwareOathMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#software_oath_methods_by_id(id) ⇒ Object
Provides operations to manage the softwareOathMethods property of the microsoft.graph.authentication entity.
222 223 224 225 226 227 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 222 def software_oath_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["softwareOathAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::SoftwareOathMethods::Item::SoftwareOathAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#temporary_access_pass_methods ⇒ Object
Provides operations to manage the temporaryAccessPassMethods property of the microsoft.graph.authentication entity.
79 80 81 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 79 def temporary_access_pass_methods() return MicrosoftGraph::Users::Item::Authentication::TemporaryAccessPassMethods::TemporaryAccessPassMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#temporary_access_pass_methods_by_id(id) ⇒ Object
Provides operations to manage the temporaryAccessPassMethods property of the microsoft.graph.authentication entity.
233 234 235 236 237 238 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 233 def temporary_access_pass_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["temporaryAccessPassAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::TemporaryAccessPassMethods::Item::TemporaryAccessPassAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |
#to_delete_request_information(request_configuration = nil) ⇒ Object
Delete navigation property authentication for users
244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 244 def to_delete_request_information(request_configuration=nil) request_info = MicrosoftKiotaAbstractions::RequestInformation.new() request_info.url_template = @url_template request_info.path_parameters = @path_parameters request_info.http_method = :DELETE unless request_configuration.nil? request_info.add_headers_from_raw_object(request_configuration.headers) request_info.(request_configuration.) end return request_info end |
#to_get_request_information(request_configuration = nil) ⇒ Object
The authentication methods that are supported for the user.
260 261 262 263 264 265 266 267 268 269 270 271 272 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 260 def to_get_request_information(request_configuration=nil) request_info = MicrosoftKiotaAbstractions::RequestInformation.new() request_info.url_template = @url_template request_info.path_parameters = @path_parameters request_info.http_method = :GET request_info.headers.add('Accept', 'application/json') unless request_configuration.nil? request_info.add_headers_from_raw_object(request_configuration.headers) request_info.set_query_string_parameters_from_raw_object(request_configuration.query_parameters) request_info.(request_configuration.) end return request_info end |
#to_patch_request_information(body, request_configuration = nil) ⇒ Object
Update the navigation property authentication in users
279 280 281 282 283 284 285 286 287 288 289 290 291 292 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 279 def to_patch_request_information(body, request_configuration=nil) raise StandardError, 'body cannot be null' if body.nil? request_info = MicrosoftKiotaAbstractions::RequestInformation.new() request_info.url_template = @url_template request_info.path_parameters = @path_parameters request_info.http_method = :PATCH request_info.headers.add('Accept', 'application/json') unless request_configuration.nil? request_info.add_headers_from_raw_object(request_configuration.headers) request_info.(request_configuration.) end request_info.set_content_from_parsable(@request_adapter, "application/json", body) return request_info end |
#windows_hello_for_business_methods ⇒ Object
Provides operations to manage the windowsHelloForBusinessMethods property of the microsoft.graph.authentication entity.
84 85 86 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 84 def windows_hello_for_business_methods() return MicrosoftGraph::Users::Item::Authentication::WindowsHelloForBusinessMethods::WindowsHelloForBusinessMethodsRequestBuilder.new(@path_parameters, @request_adapter) end |
#windows_hello_for_business_methods_by_id(id) ⇒ Object
Provides operations to manage the windowsHelloForBusinessMethods property of the microsoft.graph.authentication entity.
298 299 300 301 302 303 |
# File 'lib/users/item/authentication/authentication_request_builder.rb', line 298 def windows_hello_for_business_methods_by_id(id) raise StandardError, 'id cannot be null' if id.nil? url_tpl_params = @path_parameters.clone url_tpl_params["windowsHelloForBusinessAuthenticationMethod%2Did"] = id return MicrosoftGraph::Users::Item::Authentication::WindowsHelloForBusinessMethods::Item::WindowsHelloForBusinessAuthenticationMethodItemRequestBuilder.new(url_tpl_params, @request_adapter) end |