@microsoft/msgraph-sdk-identitygovernance 1.0.0-preview.16 → 1.0.0-preview.18

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.
@@ -10,21 +10,21 @@ export interface GroupRequestBuilder extends BaseRequestBuilder<GroupRequestBuil
10
10
  */
11
11
  get serviceProvisioningErrors(): ServiceProvisioningErrorsRequestBuilder;
12
12
  /**
13
- * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand.
13
+ * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
14
14
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
15
  * @returns {Promise<Group>}
16
16
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
17
17
  */
18
18
  get(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): Promise<Group | undefined>;
19
19
  /**
20
- * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand.
20
+ * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {RequestInformation}
23
23
  */
24
24
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): RequestInformation;
25
25
  }
26
26
  /**
27
- * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand.
27
+ * References the group that is the scope of the membership or ownership assignment request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
28
28
  */
29
29
  export interface GroupRequestBuilderGetQueryParameters {
30
30
  /**
@@ -5,21 +5,21 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface PrincipalRequestBuilder extends BaseRequestBuilder<PrincipalRequestBuilder> {
7
7
  /**
8
- * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand.
8
+ * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<DirectoryObject>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
12
  */
13
13
  get(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>;
14
14
  /**
15
- * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand.
15
+ * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {RequestInformation}
18
18
  */
19
19
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): RequestInformation;
20
20
  }
21
21
  /**
22
- * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand.
22
+ * References the principal that's in the scope of this membership or ownership assignment request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
23
23
  */
24
24
  export interface PrincipalRequestBuilderGetQueryParameters {
25
25
  /**
@@ -5,21 +5,21 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface ActivatedUsingRequestBuilder extends BaseRequestBuilder<ActivatedUsingRequestBuilder> {
7
7
  /**
8
- * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it is null. Supports $expand.
8
+ * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it's null. Supports $expand.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<PrivilegedAccessGroupEligibilitySchedule>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
12
  */
13
13
  get(requestConfiguration?: RequestConfiguration<ActivatedUsingRequestBuilderGetQueryParameters> | undefined): Promise<PrivilegedAccessGroupEligibilitySchedule | undefined>;
14
14
  /**
15
- * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it is null. Supports $expand.
15
+ * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it's null. Supports $expand.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {RequestInformation}
18
18
  */
19
19
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<ActivatedUsingRequestBuilderGetQueryParameters> | undefined): RequestInformation;
20
20
  }
21
21
  /**
22
- * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it is null. Supports $expand.
22
+ * When the request activates an ownership or membership assignment in PIM for groups, this object represents the eligibility relationship. Otherwise, it's null. Supports $expand.
23
23
  */
24
24
  export interface ActivatedUsingRequestBuilderGetQueryParameters {
25
25
  /**
@@ -10,21 +10,21 @@ export interface GroupRequestBuilder extends BaseRequestBuilder<GroupRequestBuil
10
10
  */
11
11
  get serviceProvisioningErrors(): ServiceProvisioningErrorsRequestBuilder;
12
12
  /**
13
- * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand.
13
+ * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
14
14
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
15
  * @returns {Promise<Group>}
16
16
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
17
17
  */
18
18
  get(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): Promise<Group | undefined>;
19
19
  /**
20
- * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand.
20
+ * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {RequestInformation}
23
23
  */
24
24
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): RequestInformation;
25
25
  }
26
26
  /**
27
- * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand.
27
+ * References the group that is the scope of the membership or ownership assignment through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
28
28
  */
29
29
  export interface GroupRequestBuilderGetQueryParameters {
30
30
  /**
@@ -5,21 +5,21 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface PrincipalRequestBuilder extends BaseRequestBuilder<PrincipalRequestBuilder> {
7
7
  /**
8
- * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed by PIM. Supports $expand.
8
+ * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed through PIM. Supports $expand and $select nested in $expand for id only.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<DirectoryObject>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
12
  */
13
13
  get(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>;
14
14
  /**
15
- * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed by PIM. Supports $expand.
15
+ * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed through PIM. Supports $expand and $select nested in $expand for id only.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {RequestInformation}
18
18
  */
19
19
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): RequestInformation;
20
20
  }
21
21
  /**
22
- * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed by PIM. Supports $expand.
22
+ * References the principal that's in the scope of this membership or ownership assignment request to the group that's governed through PIM. Supports $expand and $select nested in $expand for id only.
23
23
  */
24
24
  export interface PrincipalRequestBuilderGetQueryParameters {
25
25
  /**
@@ -10,21 +10,21 @@ export interface GroupRequestBuilder extends BaseRequestBuilder<GroupRequestBuil
10
10
  */
11
11
  get serviceProvisioningErrors(): ServiceProvisioningErrorsRequestBuilder;
12
12
  /**
13
- * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand.
13
+ * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
14
14
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
15
15
  * @returns {Promise<Group>}
16
16
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
17
17
  */
18
18
  get(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): Promise<Group | undefined>;
19
19
  /**
20
- * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand.
20
+ * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
21
21
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
22
22
  * @returns {RequestInformation}
23
23
  */
24
24
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<GroupRequestBuilderGetQueryParameters> | undefined): RequestInformation;
25
25
  }
26
26
  /**
27
- * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand.
27
+ * References the group that is the scope of the membership or ownership eligibility request through PIM for groups. Supports $expand and $select nested in $expand for select properties like id, displayName, and mail.
28
28
  */
29
29
  export interface GroupRequestBuilderGetQueryParameters {
30
30
  /**
@@ -5,21 +5,21 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
5
5
  */
6
6
  export interface PrincipalRequestBuilder extends BaseRequestBuilder<PrincipalRequestBuilder> {
7
7
  /**
8
- * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand.
8
+ * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
9
9
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
10
10
  * @returns {Promise<DirectoryObject>}
11
11
  * @throws {ODataError} error when the service returns a 4XX or 5XX status code
12
12
  */
13
13
  get(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObject | undefined>;
14
14
  /**
15
- * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand.
15
+ * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
16
16
  * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
17
17
  * @returns {RequestInformation}
18
18
  */
19
19
  toGetRequestInformation(requestConfiguration?: RequestConfiguration<PrincipalRequestBuilderGetQueryParameters> | undefined): RequestInformation;
20
20
  }
21
21
  /**
22
- * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand.
22
+ * References the principal that's in the scope of the membership or ownership eligibility request through the group that's governed by PIM. Supports $expand and $select nested in $expand for id only.
23
23
  */
24
24
  export interface PrincipalRequestBuilderGetQueryParameters {
25
25
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/msgraph-sdk-identitygovernance",
3
- "version": "1.0.0-preview.16",
3
+ "version": "1.0.0-preview.18",
4
4
  "description": "IdentityGovernance fluent API for Microsoft Graph",
5
5
  "keywords": [
6
6
  "Microsoft",
@@ -37,12 +37,12 @@
37
37
  "@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
38
38
  "@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
39
39
  "@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
40
- "@microsoft/msgraph-sdk": "^1.0.0-preview.16",
40
+ "@microsoft/msgraph-sdk": "^1.0.0-preview.18",
41
41
  "guid-typescript": "^1.0.9",
42
42
  "tslib": "^2.6.2"
43
43
  },
44
44
  "devDependencies": {
45
45
  "typescript": "^5.3.3"
46
46
  },
47
- "gitHead": "7d5a0cf29cc99c7e7f8b58504df4c47070cefa79"
47
+ "gitHead": "676c51d42cfb2332eb189ce7cfbc7e7dc08659b8"
48
48
  }