You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Used for pagination: the starting index of the first result to return when paginating through values.
76
76
// Default: 1.
@@ -80,6 +80,14 @@ type ListProvisionedSCIMGroupsEnterpriseOptions struct {
80
80
Count*int`url:"count,omitempty"`
81
81
}
82
82
83
+
// GetProvisionedSCIMGroupEnterpriseOptions represents query parameters for GetProvisionedSCIMGroup.
84
+
//
85
+
// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group
// SCIMEnterpriseUserAttributes represents supported SCIM enterprise user attributes, and represents the result of calling UpdateSCIMUserAttribute.
84
92
//
85
93
// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#supported-scim-user-attributes
@@ -162,8 +170,9 @@ type SCIMEnterpriseAttributeOperation struct {
162
170
163
171
// ListProvisionedSCIMGroups lists provisioned SCIM groups in an enterprise.
164
172
//
165
-
// You can improve query search time by using the `excludedAttributes` query
166
-
// parameter with a value of `members` to exclude members from the response.
173
+
// You can improve query search time by using the `excludedAttributes` and
174
+
// exclude the specified attributes, e.g. `members` to exclude members from the
175
+
// response.
167
176
//
168
177
// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#list-provisioned-scim-groups-for-an-enterprise
169
178
//
@@ -381,6 +390,60 @@ func (s *EnterpriseService) ProvisionSCIMUser(ctx context.Context, enterprise st
381
390
returnuserProvisioned, resp, nil
382
391
}
383
392
393
+
// GetProvisionedSCIMGroup gets information about a SCIM group.
394
+
//
395
+
// You can use the `excludedAttributes` from `opts` and exclude the specified
396
+
// attributes from being returned in the results. Using this parameter can
397
+
// speed up response time.
398
+
//
399
+
// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group
400
+
//
401
+
//meta:operation GET /scim/v2/enterprises/{enterprise}/Groups/{scim_group_id}
// GetProvisionedSCIMUser gets information about a SCIM user.
425
+
//
426
+
// GitHub API docs: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user
427
+
//
428
+
//meta:operation GET /scim/v2/enterprises/{enterprise}/Users/{scim_user_id}
0 commit comments