@@ -24065,9 +24065,10 @@ List provisioned SCIM groups for an enterprise
24065
24065
24066
24066
Using the `call` method:
24067
24067
```php
24068
- $client->call('GET /scim/v2/Groups', [
24068
+ $client->call('GET /scim/v2/enterprises/{enterprise}/ Groups', [
24069
24069
'filter' => 'generated',
24070
24070
'excludedAttributes' => 'generated',
24071
+ 'enterprise' => 'generated',
24071
24072
'startIndex' => 10,
24072
24073
'count' => 5,
24073
24074
]);
@@ -24077,6 +24078,7 @@ Operations method:
24077
24078
```php
24078
24079
$client->operations()->enterpriseAdmin()->listProvisionedGroupsEnterprise( filter: 'generated',
24079
24080
excludedAttributes: 'generated',
24081
+ enterprise: 'generated',
24080
24082
startIndex: 10,
24081
24083
count: 5,
24082
24084
);
@@ -24091,12 +24093,15 @@ Provision a SCIM enterprise group
24091
24093
24092
24094
Using the `call` method:
24093
24095
```php
24094
- $client->call('POST /scim/v2/Groups');
24096
+ $client->call('POST /scim/v2/enterprises/{enterprise}/Groups', [
24097
+ 'enterprise' => 'generated',
24098
+ ]);
24095
24099
```
24096
24100
24097
24101
Operations method:
24098
24102
```php
24099
- $client->operations()->enterpriseAdmin()->provisionEnterpriseGroup();
24103
+ $client->operations()->enterpriseAdmin()->provisionEnterpriseGroup( enterprise: 'generated',
24104
+ );
24100
24105
```
24101
24106
24102
24107
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#provision-a-scim-enterprise-group).
@@ -24108,16 +24113,18 @@ Get SCIM provisioning information for an enterprise group
24108
24113
24109
24114
Using the `call` method:
24110
24115
```php
24111
- $client->call('GET /scim/v2/Groups/{scim_group_id}', [
24116
+ $client->call('GET /scim/v2/enterprises/{enterprise}/ Groups/{scim_group_id}', [
24112
24117
'scim_group_id' => 'generated',
24113
24118
'excludedAttributes' => 'generated',
24119
+ 'enterprise' => 'generated',
24114
24120
]);
24115
24121
```
24116
24122
24117
24123
Operations method:
24118
24124
```php
24119
24125
$client->operations()->enterpriseAdmin()->getProvisioningInformationForEnterpriseGroup( scim_group_id: 'generated',
24120
24126
excludedAttributes: 'generated',
24127
+ enterprise: 'generated',
24121
24128
);
24122
24129
```
24123
24130
@@ -24130,14 +24137,16 @@ Set SCIM information for a provisioned enterprise group
24130
24137
24131
24138
Using the `call` method:
24132
24139
```php
24133
- $client->call('PUT /scim/v2/Groups/{scim_group_id}', [
24140
+ $client->call('PUT /scim/v2/enterprises/{enterprise}/ Groups/{scim_group_id}', [
24134
24141
'scim_group_id' => 'generated',
24142
+ 'enterprise' => 'generated',
24135
24143
]);
24136
24144
```
24137
24145
24138
24146
Operations method:
24139
24147
```php
24140
24148
$client->operations()->enterpriseAdmin()->setInformationForProvisionedEnterpriseGroup( scim_group_id: 'generated',
24149
+ enterprise: 'generated',
24141
24150
);
24142
24151
```
24143
24152
@@ -24150,14 +24159,16 @@ Delete a SCIM group from an enterprise
24150
24159
24151
24160
Using the `call` method:
24152
24161
```php
24153
- $client->call('DELETE /scim/v2/Groups/{scim_group_id}', [
24162
+ $client->call('DELETE /scim/v2/enterprises/{enterprise}/ Groups/{scim_group_id}', [
24154
24163
'scim_group_id' => 'generated',
24164
+ 'enterprise' => 'generated',
24155
24165
]);
24156
24166
```
24157
24167
24158
24168
Operations method:
24159
24169
```php
24160
24170
$client->operations()->enterpriseAdmin()->deleteScimGroupFromEnterprise( scim_group_id: 'generated',
24171
+ enterprise: 'generated',
24161
24172
);
24162
24173
```
24163
24174
@@ -24170,14 +24181,16 @@ Update an attribute for a SCIM enterprise group
24170
24181
24171
24182
Using the `call` method:
24172
24183
```php
24173
- $client->call('PATCH /scim/v2/Groups/{scim_group_id}', [
24184
+ $client->call('PATCH /scim/v2/enterprises/{enterprise}/ Groups/{scim_group_id}', [
24174
24185
'scim_group_id' => 'generated',
24186
+ 'enterprise' => 'generated',
24175
24187
]);
24176
24188
```
24177
24189
24178
24190
Operations method:
24179
24191
```php
24180
24192
$client->operations()->enterpriseAdmin()->updateAttributeForEnterpriseGroup( scim_group_id: 'generated',
24193
+ enterprise: 'generated',
24181
24194
);
24182
24195
```
24183
24196
@@ -24190,8 +24203,9 @@ List SCIM provisioned identities for an enterprise
24190
24203
24191
24204
Using the `call` method:
24192
24205
```php
24193
- $client->call('GET /scim/v2/Users', [
24206
+ $client->call('GET /scim/v2/enterprises/{enterprise}/ Users', [
24194
24207
'filter' => 'generated',
24208
+ 'enterprise' => 'generated',
24195
24209
'startIndex' => 10,
24196
24210
'count' => 5,
24197
24211
]);
@@ -24200,6 +24214,7 @@ $client->call('GET /scim/v2/Users', [
24200
24214
Operations method:
24201
24215
```php
24202
24216
$client->operations()->enterpriseAdmin()->listProvisionedIdentitiesEnterprise( filter: 'generated',
24217
+ enterprise: 'generated',
24203
24218
startIndex: 10,
24204
24219
count: 5,
24205
24220
);
@@ -24214,12 +24229,15 @@ Provision a SCIM enterprise user
24214
24229
24215
24230
Using the `call` method:
24216
24231
```php
24217
- $client->call('POST /scim/v2/Users');
24232
+ $client->call('POST /scim/v2/enterprises/{enterprise}/Users', [
24233
+ 'enterprise' => 'generated',
24234
+ ]);
24218
24235
```
24219
24236
24220
24237
Operations method:
24221
24238
```php
24222
- $client->operations()->enterpriseAdmin()->provisionEnterpriseUser();
24239
+ $client->operations()->enterpriseAdmin()->provisionEnterpriseUser( enterprise: 'generated',
24240
+ );
24223
24241
```
24224
24242
24225
24243
You can find more about this operation over at the [API method documentation](https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#provision-a-scim-enterprise-user).
@@ -24231,14 +24249,16 @@ Get SCIM provisioning information for an enterprise user
24231
24249
24232
24250
Using the `call` method:
24233
24251
```php
24234
- $client->call('GET /scim/v2/Users/{scim_user_id}', [
24252
+ $client->call('GET /scim/v2/enterprises/{enterprise}/ Users/{scim_user_id}', [
24235
24253
'scim_user_id' => 'generated',
24254
+ 'enterprise' => 'generated',
24236
24255
]);
24237
24256
```
24238
24257
24239
24258
Operations method:
24240
24259
```php
24241
24260
$client->operations()->enterpriseAdmin()->getProvisioningInformationForEnterpriseUser( scim_user_id: 'generated',
24261
+ enterprise: 'generated',
24242
24262
);
24243
24263
```
24244
24264
@@ -24251,14 +24271,16 @@ Set SCIM information for a provisioned enterprise user
24251
24271
24252
24272
Using the `call` method:
24253
24273
```php
24254
- $client->call('PUT /scim/v2/Users/{scim_user_id}', [
24274
+ $client->call('PUT /scim/v2/enterprises/{enterprise}/ Users/{scim_user_id}', [
24255
24275
'scim_user_id' => 'generated',
24276
+ 'enterprise' => 'generated',
24256
24277
]);
24257
24278
```
24258
24279
24259
24280
Operations method:
24260
24281
```php
24261
24282
$client->operations()->enterpriseAdmin()->setInformationForProvisionedEnterpriseUser( scim_user_id: 'generated',
24283
+ enterprise: 'generated',
24262
24284
);
24263
24285
```
24264
24286
@@ -24271,14 +24293,16 @@ Delete a SCIM user from an enterprise
24271
24293
24272
24294
Using the `call` method:
24273
24295
```php
24274
- $client->call('DELETE /scim/v2/Users/{scim_user_id}', [
24296
+ $client->call('DELETE /scim/v2/enterprises/{enterprise}/ Users/{scim_user_id}', [
24275
24297
'scim_user_id' => 'generated',
24298
+ 'enterprise' => 'generated',
24276
24299
]);
24277
24300
```
24278
24301
24279
24302
Operations method:
24280
24303
```php
24281
24304
$client->operations()->enterpriseAdmin()->deleteUserFromEnterprise( scim_user_id: 'generated',
24305
+ enterprise: 'generated',
24282
24306
);
24283
24307
```
24284
24308
@@ -24291,14 +24315,16 @@ Update an attribute for a SCIM enterprise user
24291
24315
24292
24316
Using the `call` method:
24293
24317
```php
24294
- $client->call('PATCH /scim/v2/Users/{scim_user_id}', [
24318
+ $client->call('PATCH /scim/v2/enterprises/{enterprise}/ Users/{scim_user_id}', [
24295
24319
'scim_user_id' => 'generated',
24320
+ 'enterprise' => 'generated',
24296
24321
]);
24297
24322
```
24298
24323
24299
24324
Operations method:
24300
24325
```php
24301
24326
$client->operations()->enterpriseAdmin()->updateAttributeForEnterpriseUser( scim_user_id: 'generated',
24327
+ enterprise: 'generated',
24302
24328
);
24303
24329
```
24304
24330
0 commit comments