Class: MicrosoftGraph::Me::Authentication::PhoneMethods::Item::PhoneAuthenticationMethodItemRequestBuilder
- Inherits:
-
MicrosoftKiotaAbstractions::BaseRequestBuilder
- Object
- MicrosoftKiotaAbstractions::BaseRequestBuilder
- MicrosoftGraph::Me::Authentication::PhoneMethods::Item::PhoneAuthenticationMethodItemRequestBuilder
- Defined in:
- lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb
Overview
Provides operations to manage the phoneMethods property of the microsoft.graph.authentication entity.
Defined Under Namespace
Classes: PhoneAuthenticationMethodItemRequestBuilderGetQueryParameters
Instance Method Summary collapse
-
#delete(request_configuration = nil) ⇒ Object
Delete a user’s phone authentication method.
-
#disable_sms_sign_in ⇒ Object
Provides operations to call the disableSmsSignIn method.
-
#enable_sms_sign_in ⇒ Object
Provides operations to call the enableSmsSignIn method.
-
#get(request_configuration = nil) ⇒ Object
Retrieve a single phoneAuthenticationMethod object for a user.
-
#initialize(path_parameters, request_adapter) ⇒ Object
constructor
Instantiates a new PhoneAuthenticationMethodItemRequestBuilder and sets the default values.
-
#patch(body, request_configuration = nil) ⇒ Object
Update a user’s phone number associated with a phone authentication method object.
-
#to_delete_request_information(request_configuration = nil) ⇒ Object
Delete a user’s phone authentication method.
-
#to_get_request_information(request_configuration = nil) ⇒ Object
Retrieve a single phoneAuthenticationMethod object for a user.
-
#to_patch_request_information(body, request_configuration = nil) ⇒ Object
Update a user’s phone number associated with a phone authentication method object.
Constructor Details
#initialize(path_parameters, request_adapter) ⇒ Object
Instantiates a new PhoneAuthenticationMethodItemRequestBuilder and sets the default values.
37 38 39 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 37 def initialize(path_parameters, request_adapter) super(path_parameters, request_adapter, "{+baseurl}/me/authentication/phoneMethods/{phoneAuthenticationMethod%2Did}{?%24select,%24expand}") end |
Instance Method Details
#delete(request_configuration = nil) ⇒ Object
Delete a user’s phone authentication method. This removes the phone number from the user and they will no longer be able to use the number for authentication, whether via SMS or voice calls. A user cannot have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user’s default Azure multi-factor authentication (MFA) authentication method, it cannot be deleted. Have the user change their default authentication method, and then delete the number.
45 46 47 48 49 50 51 52 53 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 45 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::ODataErrorsODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, nil, error_mapping) end |
#disable_sms_sign_in ⇒ Object
Provides operations to call the disableSmsSignIn method.
23 24 25 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 23 def disable_sms_sign_in() return MicrosoftGraph::Me::Authentication::PhoneMethods::Item::DisableSmsSignIn::DisableSmsSignInRequestBuilder.new(@path_parameters, @request_adapter) end |
#enable_sms_sign_in ⇒ Object
Provides operations to call the enableSmsSignIn method.
28 29 30 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 28 def enable_sms_sign_in() return MicrosoftGraph::Me::Authentication::PhoneMethods::Item::EnableSmsSignIn::EnableSmsSignInRequestBuilder.new(@path_parameters, @request_adapter) end |
#get(request_configuration = nil) ⇒ Object
Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Azure AD and B2B users, but not B2C users.
59 60 61 62 63 64 65 66 67 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 59 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::ODataErrorsODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::PhoneAuthenticationMethod.create_from_discriminator_value(pn) }, error_mapping) end |
#patch(body, request_configuration = nil) ⇒ Object
Update a user’s phone number associated with a phone authentication method object. You can’t change a phone’s type. To change a phone’s type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system.
74 75 76 77 78 79 80 81 82 83 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 74 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::ODataErrorsODataError.create_from_discriminator_value(pn) } error_mapping["5XX"] = lambda {|pn| MicrosoftGraph::Models::ODataErrorsODataError.create_from_discriminator_value(pn) } return @request_adapter.send_async(request_info, lambda {|pn| MicrosoftGraph::Models::PhoneAuthenticationMethod.create_from_discriminator_value(pn) }, error_mapping) end |
#to_delete_request_information(request_configuration = nil) ⇒ Object
Delete a user’s phone authentication method. This removes the phone number from the user and they will no longer be able to use the number for authentication, whether via SMS or voice calls. A user cannot have an alternateMobile number without a mobile number. If you want to remove a mobile number from a user that also has an alternateMobile number, first update the mobile number to the new number, then delete the alternateMobile number. If the phone number is the user’s default Azure multi-factor authentication (MFA) authentication method, it cannot be deleted. Have the user change their default authentication method, and then delete the number.
89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 89 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
Retrieve a single phoneAuthenticationMethod object for a user. This method is available only for standard Azure AD and B2B users, but not B2C users.
105 106 107 108 109 110 111 112 113 114 115 116 117 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 105 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 a user’s phone number associated with a phone authentication method object. You can’t change a phone’s type. To change a phone’s type, add a new number of the desired type and then delete the object with the original type. If a user is enabled by policy to use SMS to sign in and the mobile number is changed, the system will attempt to register the number for use in that system.
124 125 126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/me/authentication/phone_methods/item/phone_authentication_method_item_request_builder.rb', line 124 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 |