@microsoft/msgraph-sdk-users 1.0.0-preview.50 → 1.0.0-preview.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/users/index.d.ts CHANGED
@@ -37,30 +37,30 @@ export interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuil
37
37
  */
38
38
  byUserId(userId: string): UserItemRequestBuilder;
39
39
  /**
40
- * List properties and relationships of the user objects.
40
+ * Retrieve a list of user objects.
41
41
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
42
42
  * @returns {Promise<UserCollectionResponse>}
43
43
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
44
- * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0|Find more info here}
44
+ * @see {@link https://learn.microsoft.com/graph/api/user-list?view=graph-rest-1.0|Find more info here}
45
45
  */
46
46
  get(requestConfiguration?: RequestConfiguration<UsersRequestBuilderGetQueryParameters> | undefined): Promise<UserCollectionResponse | undefined>;
47
47
  /**
48
- * Create a new user object.
48
+ * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
49
49
  * @param body The request body
50
50
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
51
51
  * @returns {Promise<User>}
52
52
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
53
- * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-create?view=graph-rest-1.0|Find more info here}
53
+ * @see {@link https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-1.0|Find more info here}
54
54
  */
55
55
  post(body: User, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<User | undefined>;
56
56
  /**
57
- * List properties and relationships of the user objects.
57
+ * Retrieve a list of user objects.
58
58
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
59
59
  * @returns {RequestInformation}
60
60
  */
61
61
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<UsersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
62
62
  /**
63
- * Create a new user object.
63
+ * Create a new user.The request body contains the user to create. At a minimum, you must specify the required properties for the user. You can optionally specify any other writable properties.
64
64
  * @param body The request body
65
65
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
66
66
  * @returns {RequestInformation}
@@ -68,7 +68,7 @@ export interface UsersRequestBuilder extends BaseRequestBuilder<UsersRequestBuil
68
68
  toPostRequestInformation(body: User, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
69
69
  }
70
70
  /**
71
- * List properties and relationships of the user objects.
71
+ * Retrieve a list of user objects.
72
72
  */
73
73
  export interface UsersRequestBuilderGetQueryParameters {
74
74
  /**
@@ -395,7 +395,7 @@ export interface UserItemRequestBuilder extends BaseRequestBuilder<UserItemReque
395
395
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
396
396
  * @returns {Promise<User>}
397
397
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
398
- * @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0|Find more info here}
398
+ * @see {@link https://learn.microsoft.com/graph/api/intune-mam-user-get?view=graph-rest-1.0|Find more info here}
399
399
  */
400
400
  get(requestConfiguration?: RequestConfiguration<UserItemRequestBuilderGetQueryParameters> | undefined): Promise<User | undefined>;
401
401
  /**