UNPKG

@microsoft/msgraph-beta-sdk-users

Version:
98 lines 5 kB
import { type EmailAuthenticationMethod, type EmailAuthenticationMethodCollectionResponse } from '@microsoft/msgraph-beta-sdk/models/index.js'; import { type CountRequestBuilder } from './count/index.js'; import { type EmailAuthenticationMethodItemRequestBuilder } from './item/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity. */ export interface EmailMethodsRequestBuilder extends BaseRequestBuilder<EmailMethodsRequestBuilder> { /** * Provides operations to count the resources in the collection. */ get count(): CountRequestBuilder; /** * Provides operations to manage the emailMethods property of the microsoft.graph.authentication entity. * @param emailAuthenticationMethodId The unique identifier of emailAuthenticationMethod * @returns {EmailAuthenticationMethodItemRequestBuilder} */ byEmailAuthenticationMethodId(emailAuthenticationMethodId: string): EmailAuthenticationMethodItemRequestBuilder; /** * Represents the email addresses registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<EmailAuthenticationMethodCollectionResponse>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration<EmailMethodsRequestBuilderGetQueryParameters> | undefined): Promise<EmailAuthenticationMethodCollectionResponse | undefined>; /** * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. Self-service operations aren't supported. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise<EmailAuthenticationMethod>} * @throws {ODataError} error when the service returns a 4XX or 5XX status code * @see {@link https://learn.microsoft.com/graph/api/authentication-post-emailmethods?view=graph-rest-beta|Find more info here} */ post(body: EmailAuthenticationMethod, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<EmailAuthenticationMethod | undefined>; /** * Represents the email addresses registered to a user for authentication. * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration<EmailMethodsRequestBuilderGetQueryParameters> | undefined): RequestInformation; /** * Set a user's emailAuthenticationMethod object. Email authentication is a self-service password reset method. A user may only have one email authentication method. Self-service operations aren't supported. * @param body The request body * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(body: EmailAuthenticationMethod, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation; } /** * Represents the email addresses registered to a user for authentication. */ export interface EmailMethodsRequestBuilderGetQueryParameters { /** * Include count of items */ count?: boolean; /** * Expand related entities */ expand?: string[]; /** * Filter items by property values */ filter?: string; /** * Order items by property values */ orderby?: string[]; /** * Search items by search phrases */ search?: string; /** * Select properties to be returned */ select?: string[]; /** * Skip the first n items */ skip?: number; /** * Show only the first n items */ top?: number; } /** * Uri template for the request builder. */ export declare const EmailMethodsRequestBuilderUriTemplate = "{+baseurl}/users/{user%2Did}/authentication/emailMethods{?%24count,%24expand,%24filter,%24orderby,%24search,%24select,%24skip,%24top}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const EmailMethodsRequestBuilderNavigationMetadata: Record<Exclude<keyof EmailMethodsRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>; /** * Metadata for all the requests in the request builder. */ export declare const EmailMethodsRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map