Class: MicrosoftGraph::Users::Item::Authentication::AuthenticationRequestBuilder

Inherits:
MicrosoftKiotaAbstractions::BaseRequestBuilder
  • Object
show all
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

Constructor Details

#initialize(path_parameters, request_adapter) ⇒ Object

Instantiates a new AuthenticationRequestBuilder and sets the default values.

Parameters:

  • path_parameters

    Path parameters for the request

  • request_adapter

    The request adapter to use to execute the requests.



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

Parameters:

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a Fiber of void



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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a email_authentication_method_item_request_builder

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a fido2_authentication_method_item_request_builder

Raises:

  • (StandardError)


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.

Parameters:

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a Fiber of authentication



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

#methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a authentication_method_item_request_builder

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a microsoft_authenticator_authentication_method_item_request_builder

Raises:

  • (StandardError)


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

#operationsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a long_running_operation_item_request_builder

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a password_authentication_method_item_request_builder

Raises:

  • (StandardError)


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

Parameters:

  • body

    The request body

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a Fiber of authentication

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a phone_authentication_method_item_request_builder

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a software_oath_authentication_method_item_request_builder

Raises:

  • (StandardError)


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_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a temporary_access_pass_authentication_method_item_request_builder

Raises:

  • (StandardError)


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

Parameters:

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a request_information



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.add_request_options(request_configuration.options)
    end
    return request_info
end

#to_get_request_information(request_configuration = nil) ⇒ Object

The authentication methods that are supported for the user.

Parameters:

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a request_information



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.add_request_options(request_configuration.options)
    end
    return request_info
end

#to_patch_request_information(body, request_configuration = nil) ⇒ Object

Update the navigation property authentication in users

Parameters:

  • body

    The request body

  • request_configuration (defaults to: nil)

    Configuration for the request such as headers, query parameters, and middleware options.

Returns:

  • a request_information

Raises:

  • (StandardError)


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.add_request_options(request_configuration.options)
    end
    request_info.set_content_from_parsable(@request_adapter, "application/json", body)
    return request_info
end

#windows_hello_for_business_methodsObject

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.

Parameters:

  • id

    Unique identifier of the item

Returns:

  • a windows_hello_for_business_authentication_method_item_request_builder

Raises:

  • (StandardError)


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