@maxim_mazurok/gapi.client.iam-v1 0.0.20250704 → 0.0.20250718
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/index.d.ts +587 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://iam.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250718
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -278,6 +278,18 @@ declare namespace gapi.client {
|
|
|
278
278
|
/** A list of WorkforcePoolProviderKeys. */
|
|
279
279
|
workforcePoolProviderKeys?: WorkforcePoolProviderKey[];
|
|
280
280
|
}
|
|
281
|
+
interface ListWorkforcePoolProviderScimTenantsResponse {
|
|
282
|
+
/** Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
283
|
+
nextPageToken?: string;
|
|
284
|
+
/** Output only. A list of scim tenants. */
|
|
285
|
+
workforcePoolProviderScimTenants?: WorkforcePoolProviderScimTenant[];
|
|
286
|
+
}
|
|
287
|
+
interface ListWorkforcePoolProviderScimTokensResponse {
|
|
288
|
+
/** Optional. A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
289
|
+
nextPageToken?: string;
|
|
290
|
+
/** Output only. A list of scim tokens. */
|
|
291
|
+
workforcePoolProviderScimTokens?: WorkforcePoolProviderScimToken[];
|
|
292
|
+
}
|
|
281
293
|
interface ListWorkforcePoolProvidersResponse {
|
|
282
294
|
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
283
295
|
nextPageToken?: string;
|
|
@@ -620,6 +632,8 @@ declare namespace gapi.client {
|
|
|
620
632
|
}
|
|
621
633
|
interface UndeleteWorkforcePoolProviderKeyRequest {}
|
|
622
634
|
interface UndeleteWorkforcePoolProviderRequest {}
|
|
635
|
+
interface UndeleteWorkforcePoolProviderScimTenantRequest {}
|
|
636
|
+
interface UndeleteWorkforcePoolProviderScimTokenRequest {}
|
|
623
637
|
interface UndeleteWorkforcePoolRequest {}
|
|
624
638
|
interface UndeleteWorkforcePoolSubjectRequest {}
|
|
625
639
|
interface UndeleteWorkloadIdentityPoolManagedIdentityRequest {}
|
|
@@ -666,6 +680,8 @@ declare namespace gapi.client {
|
|
|
666
680
|
displayName?: string;
|
|
667
681
|
/** Output only. Time after which the workload pool provider will be permanently purged and cannot be recovered. */
|
|
668
682
|
expireTime?: string;
|
|
683
|
+
/** Optional. The configuration for OAuth 2.0 client used to get the extended group memberships for user identities. Only the `AZURE_AD_GROUPS_ID` attribute type is supported. Extended groups supports a subset of Google Cloud services. When the user accesses these services, extended group memberships override the mapped `google.groups` attribute. Extended group memberships cannot be used in attribute mapping or attribute condition expressions. To keep extended group memberships up to date, extended groups are retrieved when the user signs in and at regular intervals during the user's active session. Each user identity in the workforce identity pool must map to a specific, unique Microsoft Entra ID user. */
|
|
684
|
+
extendedAttributesOauth2Client?: GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client;
|
|
669
685
|
/** Optional. The configuration for OAuth 2.0 client used to get the additional user attributes. This should be used when users can't get the desired claims in authentication credentials. Currently this configuration is only supported with OIDC protocol. */
|
|
670
686
|
extraAttributesOauth2Client?: GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client;
|
|
671
687
|
/** Identifier. The resource name of the provider. Format: `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}` */
|
|
@@ -689,6 +705,32 @@ declare namespace gapi.client {
|
|
|
689
705
|
/** Required. The purpose of the key. */
|
|
690
706
|
use?: string;
|
|
691
707
|
}
|
|
708
|
+
interface WorkforcePoolProviderScimTenant {
|
|
709
|
+
/** Output only. Represents the base URI as defined in [RFC 7644, Section 1.3](https://datatracker.ietf.org/doc/html/rfc7644#section-1.3). Clients must use this as the root address for managing resources under the tenant. Format: https://iamscim.googleapis.com/{version}/{tenant_id}/ */
|
|
710
|
+
baseUri?: string;
|
|
711
|
+
/** Optional. Maps BYOID claims to SCIM claims. */
|
|
712
|
+
claimMapping?: {[P in string]: string};
|
|
713
|
+
/** Optional. The user-specified description of the scim tenant. Cannot exceed 256 characters. */
|
|
714
|
+
description?: string;
|
|
715
|
+
/** Optional. The user-specified display name of the scim tenant. Cannot exceed 32 characters. */
|
|
716
|
+
displayName?: string;
|
|
717
|
+
/** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
|
|
718
|
+
name?: string;
|
|
719
|
+
/** Output only. The timestamp when the scim tenant is going to be purged. */
|
|
720
|
+
purgeTime?: string;
|
|
721
|
+
/** Output only. The state of the tenant. */
|
|
722
|
+
state?: string;
|
|
723
|
+
}
|
|
724
|
+
interface WorkforcePoolProviderScimToken {
|
|
725
|
+
/** Optional. The user-specified display name of the scim token. Cannot exceed 32 characters. */
|
|
726
|
+
displayName?: string;
|
|
727
|
+
/** Identifier. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
728
|
+
name?: string;
|
|
729
|
+
/** Output only. The token string. Provide this to the IdP for authentication. Will be set only during creation. */
|
|
730
|
+
securityToken?: string;
|
|
731
|
+
/** Output only. The state of the token. */
|
|
732
|
+
state?: string;
|
|
733
|
+
}
|
|
692
734
|
interface WorkloadIdentityPool {
|
|
693
735
|
/** Optional. A description of the pool. Cannot exceed 256 characters. */
|
|
694
736
|
description?: string;
|
|
@@ -1185,6 +1227,549 @@ declare namespace gapi.client {
|
|
|
1185
1227
|
uploadType?: string;
|
|
1186
1228
|
}): Request<Operation>;
|
|
1187
1229
|
}
|
|
1230
|
+
interface TokensResource {
|
|
1231
|
+
/** Creates a new WorkforcePoolProviderScimToken in a WorkforcePoolProviderScimTenant. You cannot reuse the name of a deleted SCIM token until 30 days after deletion. */
|
|
1232
|
+
create(request: {
|
|
1233
|
+
/** V1 error format. */
|
|
1234
|
+
'$.xgafv'?: string;
|
|
1235
|
+
/** OAuth access token. */
|
|
1236
|
+
access_token?: string;
|
|
1237
|
+
/** Data format for response. */
|
|
1238
|
+
alt?: string;
|
|
1239
|
+
/** JSONP */
|
|
1240
|
+
callback?: string;
|
|
1241
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1242
|
+
fields?: string;
|
|
1243
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1244
|
+
key?: string;
|
|
1245
|
+
/** OAuth 2.0 token for the current user. */
|
|
1246
|
+
oauth_token?: string;
|
|
1247
|
+
/** Required. The parent tenant to create scim token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
|
|
1248
|
+
parent: string;
|
|
1249
|
+
/** Returns response with indentations and line breaks. */
|
|
1250
|
+
prettyPrint?: boolean;
|
|
1251
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1252
|
+
quotaUser?: string;
|
|
1253
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1254
|
+
upload_protocol?: string;
|
|
1255
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1256
|
+
uploadType?: string;
|
|
1257
|
+
/** Required. The ID to use for the scim token, which becomes the final component of the resource name. This value should be 4-32 characters and follow this pattern: "([a-z]([a-z0-9\\-]{2,30}[a-z0-9]))" */
|
|
1258
|
+
workforcePoolProviderScimTokenId?: string;
|
|
1259
|
+
/** Request body */
|
|
1260
|
+
resource: WorkforcePoolProviderScimToken;
|
|
1261
|
+
}): Request<WorkforcePoolProviderScimToken>;
|
|
1262
|
+
create(
|
|
1263
|
+
request: {
|
|
1264
|
+
/** V1 error format. */
|
|
1265
|
+
'$.xgafv'?: string;
|
|
1266
|
+
/** OAuth access token. */
|
|
1267
|
+
access_token?: string;
|
|
1268
|
+
/** Data format for response. */
|
|
1269
|
+
alt?: string;
|
|
1270
|
+
/** JSONP */
|
|
1271
|
+
callback?: string;
|
|
1272
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1273
|
+
fields?: string;
|
|
1274
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1275
|
+
key?: string;
|
|
1276
|
+
/** OAuth 2.0 token for the current user. */
|
|
1277
|
+
oauth_token?: string;
|
|
1278
|
+
/** Required. The parent tenant to create scim token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
|
|
1279
|
+
parent: string;
|
|
1280
|
+
/** Returns response with indentations and line breaks. */
|
|
1281
|
+
prettyPrint?: boolean;
|
|
1282
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1283
|
+
quotaUser?: string;
|
|
1284
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1285
|
+
upload_protocol?: string;
|
|
1286
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1287
|
+
uploadType?: string;
|
|
1288
|
+
/** Required. The ID to use for the scim token, which becomes the final component of the resource name. This value should be 4-32 characters and follow this pattern: "([a-z]([a-z0-9\\-]{2,30}[a-z0-9]))" */
|
|
1289
|
+
workforcePoolProviderScimTokenId?: string;
|
|
1290
|
+
},
|
|
1291
|
+
body: WorkforcePoolProviderScimToken,
|
|
1292
|
+
): Request<WorkforcePoolProviderScimToken>;
|
|
1293
|
+
/** Deletes a WorkforcePoolProviderScimToken. You can undelete a scim token for 30 days. After 30 days, deletion is permanent. You cannot update deleted scim tokens. However, you can view and list them. */
|
|
1294
|
+
delete(request?: {
|
|
1295
|
+
/** V1 error format. */
|
|
1296
|
+
'$.xgafv'?: string;
|
|
1297
|
+
/** OAuth access token. */
|
|
1298
|
+
access_token?: string;
|
|
1299
|
+
/** Data format for response. */
|
|
1300
|
+
alt?: string;
|
|
1301
|
+
/** JSONP */
|
|
1302
|
+
callback?: string;
|
|
1303
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1304
|
+
fields?: string;
|
|
1305
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1306
|
+
key?: string;
|
|
1307
|
+
/** Required. The name of the scim token to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1308
|
+
name: string;
|
|
1309
|
+
/** OAuth 2.0 token for the current user. */
|
|
1310
|
+
oauth_token?: string;
|
|
1311
|
+
/** Returns response with indentations and line breaks. */
|
|
1312
|
+
prettyPrint?: boolean;
|
|
1313
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1314
|
+
quotaUser?: string;
|
|
1315
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1316
|
+
upload_protocol?: string;
|
|
1317
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1318
|
+
uploadType?: string;
|
|
1319
|
+
}): Request<WorkforcePoolProviderScimToken>;
|
|
1320
|
+
/** Gets an individual WorkforcePoolProviderScimToken. */
|
|
1321
|
+
get(request?: {
|
|
1322
|
+
/** V1 error format. */
|
|
1323
|
+
'$.xgafv'?: string;
|
|
1324
|
+
/** OAuth access token. */
|
|
1325
|
+
access_token?: string;
|
|
1326
|
+
/** Data format for response. */
|
|
1327
|
+
alt?: string;
|
|
1328
|
+
/** JSONP */
|
|
1329
|
+
callback?: string;
|
|
1330
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1331
|
+
fields?: string;
|
|
1332
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1333
|
+
key?: string;
|
|
1334
|
+
/** Required. The name of the scim token to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1335
|
+
name: string;
|
|
1336
|
+
/** OAuth 2.0 token for the current user. */
|
|
1337
|
+
oauth_token?: string;
|
|
1338
|
+
/** Returns response with indentations and line breaks. */
|
|
1339
|
+
prettyPrint?: boolean;
|
|
1340
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1341
|
+
quotaUser?: string;
|
|
1342
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1343
|
+
upload_protocol?: string;
|
|
1344
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1345
|
+
uploadType?: string;
|
|
1346
|
+
}): Request<WorkforcePoolProviderScimToken>;
|
|
1347
|
+
/** Lists all non-deleted WorkforcePoolProviderScimTokenss in a WorkforcePoolProviderScimTenant. If `show_deleted` is set to `true`, then deleted SCIM tokens are also listed. */
|
|
1348
|
+
list(request?: {
|
|
1349
|
+
/** V1 error format. */
|
|
1350
|
+
'$.xgafv'?: string;
|
|
1351
|
+
/** OAuth access token. */
|
|
1352
|
+
access_token?: string;
|
|
1353
|
+
/** Data format for response. */
|
|
1354
|
+
alt?: string;
|
|
1355
|
+
/** JSONP */
|
|
1356
|
+
callback?: string;
|
|
1357
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1358
|
+
fields?: string;
|
|
1359
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1360
|
+
key?: string;
|
|
1361
|
+
/** OAuth 2.0 token for the current user. */
|
|
1362
|
+
oauth_token?: string;
|
|
1363
|
+
/** Optional. The maximum number of scim tokens to return. If unspecified, at most 2 scim tokens will be returned. */
|
|
1364
|
+
pageSize?: number;
|
|
1365
|
+
/** Optional. A page token, received from a previous `ListWorkforcePoolProviderScimTokens` call. Provide this to retrieve the subsequent page. */
|
|
1366
|
+
pageToken?: string;
|
|
1367
|
+
/** Required. The parent to list scim tokens. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
|
|
1368
|
+
parent: string;
|
|
1369
|
+
/** Returns response with indentations and line breaks. */
|
|
1370
|
+
prettyPrint?: boolean;
|
|
1371
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1372
|
+
quotaUser?: string;
|
|
1373
|
+
/** Optional. Whether to return soft-deleted scim tokens. */
|
|
1374
|
+
showDeleted?: boolean;
|
|
1375
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1376
|
+
upload_protocol?: string;
|
|
1377
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1378
|
+
uploadType?: string;
|
|
1379
|
+
}): Request<ListWorkforcePoolProviderScimTokensResponse>;
|
|
1380
|
+
/** Updates an existing WorkforcePoolProviderScimToken. */
|
|
1381
|
+
patch(request: {
|
|
1382
|
+
/** V1 error format. */
|
|
1383
|
+
'$.xgafv'?: string;
|
|
1384
|
+
/** OAuth access token. */
|
|
1385
|
+
access_token?: string;
|
|
1386
|
+
/** Data format for response. */
|
|
1387
|
+
alt?: string;
|
|
1388
|
+
/** JSONP */
|
|
1389
|
+
callback?: string;
|
|
1390
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1391
|
+
fields?: string;
|
|
1392
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1393
|
+
key?: string;
|
|
1394
|
+
/** Identifier. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1395
|
+
name: string;
|
|
1396
|
+
/** OAuth 2.0 token for the current user. */
|
|
1397
|
+
oauth_token?: string;
|
|
1398
|
+
/** Returns response with indentations and line breaks. */
|
|
1399
|
+
prettyPrint?: boolean;
|
|
1400
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1401
|
+
quotaUser?: string;
|
|
1402
|
+
/** Optional. The list of fields to update. */
|
|
1403
|
+
updateMask?: string;
|
|
1404
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1405
|
+
upload_protocol?: string;
|
|
1406
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1407
|
+
uploadType?: string;
|
|
1408
|
+
/** Request body */
|
|
1409
|
+
resource: WorkforcePoolProviderScimToken;
|
|
1410
|
+
}): Request<WorkforcePoolProviderScimToken>;
|
|
1411
|
+
patch(
|
|
1412
|
+
request: {
|
|
1413
|
+
/** V1 error format. */
|
|
1414
|
+
'$.xgafv'?: string;
|
|
1415
|
+
/** OAuth access token. */
|
|
1416
|
+
access_token?: string;
|
|
1417
|
+
/** Data format for response. */
|
|
1418
|
+
alt?: string;
|
|
1419
|
+
/** JSONP */
|
|
1420
|
+
callback?: string;
|
|
1421
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1422
|
+
fields?: string;
|
|
1423
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1424
|
+
key?: string;
|
|
1425
|
+
/** Identifier. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1426
|
+
name: string;
|
|
1427
|
+
/** OAuth 2.0 token for the current user. */
|
|
1428
|
+
oauth_token?: string;
|
|
1429
|
+
/** Returns response with indentations and line breaks. */
|
|
1430
|
+
prettyPrint?: boolean;
|
|
1431
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1432
|
+
quotaUser?: string;
|
|
1433
|
+
/** Optional. The list of fields to update. */
|
|
1434
|
+
updateMask?: string;
|
|
1435
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1436
|
+
upload_protocol?: string;
|
|
1437
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1438
|
+
uploadType?: string;
|
|
1439
|
+
},
|
|
1440
|
+
body: WorkforcePoolProviderScimToken,
|
|
1441
|
+
): Request<WorkforcePoolProviderScimToken>;
|
|
1442
|
+
/** Undeletes a WorkforcePoolProviderScimToken, as long as it was deleted fewer than 30 days ago. */
|
|
1443
|
+
undelete(request: {
|
|
1444
|
+
/** V1 error format. */
|
|
1445
|
+
'$.xgafv'?: string;
|
|
1446
|
+
/** OAuth access token. */
|
|
1447
|
+
access_token?: string;
|
|
1448
|
+
/** Data format for response. */
|
|
1449
|
+
alt?: string;
|
|
1450
|
+
/** JSONP */
|
|
1451
|
+
callback?: string;
|
|
1452
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1453
|
+
fields?: string;
|
|
1454
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1455
|
+
key?: string;
|
|
1456
|
+
/** Required. The name of the scim token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1457
|
+
name: string;
|
|
1458
|
+
/** OAuth 2.0 token for the current user. */
|
|
1459
|
+
oauth_token?: string;
|
|
1460
|
+
/** Returns response with indentations and line breaks. */
|
|
1461
|
+
prettyPrint?: boolean;
|
|
1462
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1463
|
+
quotaUser?: string;
|
|
1464
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1465
|
+
upload_protocol?: string;
|
|
1466
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1467
|
+
uploadType?: string;
|
|
1468
|
+
/** Request body */
|
|
1469
|
+
resource: UndeleteWorkforcePoolProviderScimTokenRequest;
|
|
1470
|
+
}): Request<WorkforcePoolProviderScimToken>;
|
|
1471
|
+
undelete(
|
|
1472
|
+
request: {
|
|
1473
|
+
/** V1 error format. */
|
|
1474
|
+
'$.xgafv'?: string;
|
|
1475
|
+
/** OAuth access token. */
|
|
1476
|
+
access_token?: string;
|
|
1477
|
+
/** Data format for response. */
|
|
1478
|
+
alt?: string;
|
|
1479
|
+
/** JSONP */
|
|
1480
|
+
callback?: string;
|
|
1481
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1482
|
+
fields?: string;
|
|
1483
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1484
|
+
key?: string;
|
|
1485
|
+
/** Required. The name of the scim token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
|
|
1486
|
+
name: string;
|
|
1487
|
+
/** OAuth 2.0 token for the current user. */
|
|
1488
|
+
oauth_token?: string;
|
|
1489
|
+
/** Returns response with indentations and line breaks. */
|
|
1490
|
+
prettyPrint?: boolean;
|
|
1491
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1492
|
+
quotaUser?: string;
|
|
1493
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1494
|
+
upload_protocol?: string;
|
|
1495
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1496
|
+
uploadType?: string;
|
|
1497
|
+
},
|
|
1498
|
+
body: UndeleteWorkforcePoolProviderScimTokenRequest,
|
|
1499
|
+
): Request<WorkforcePoolProviderScimToken>;
|
|
1500
|
+
}
|
|
1501
|
+
interface ScimTenantsResource {
|
|
1502
|
+
/** Creates a new WorkforcePoolProviderScimTenant in a WorkforcePoolProvider. You cannot reuse the name of a deleted scim tenant until 30 days after deletion. */
|
|
1503
|
+
create(request: {
|
|
1504
|
+
/** V1 error format. */
|
|
1505
|
+
'$.xgafv'?: string;
|
|
1506
|
+
/** OAuth access token. */
|
|
1507
|
+
access_token?: string;
|
|
1508
|
+
/** Data format for response. */
|
|
1509
|
+
alt?: string;
|
|
1510
|
+
/** JSONP */
|
|
1511
|
+
callback?: string;
|
|
1512
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1513
|
+
fields?: string;
|
|
1514
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1515
|
+
key?: string;
|
|
1516
|
+
/** OAuth 2.0 token for the current user. */
|
|
1517
|
+
oauth_token?: string;
|
|
1518
|
+
/** Required. The parent to create scim tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
|
|
1519
|
+
parent: string;
|
|
1520
|
+
/** Returns response with indentations and line breaks. */
|
|
1521
|
+
prettyPrint?: boolean;
|
|
1522
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1523
|
+
quotaUser?: string;
|
|
1524
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1525
|
+
upload_protocol?: string;
|
|
1526
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1527
|
+
uploadType?: string;
|
|
1528
|
+
/** Required. The ID to use for the scim tenant, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. */
|
|
1529
|
+
workforcePoolProviderScimTenantId?: string;
|
|
1530
|
+
/** Request body */
|
|
1531
|
+
resource: WorkforcePoolProviderScimTenant;
|
|
1532
|
+
}): Request<WorkforcePoolProviderScimTenant>;
|
|
1533
|
+
create(
|
|
1534
|
+
request: {
|
|
1535
|
+
/** V1 error format. */
|
|
1536
|
+
'$.xgafv'?: string;
|
|
1537
|
+
/** OAuth access token. */
|
|
1538
|
+
access_token?: string;
|
|
1539
|
+
/** Data format for response. */
|
|
1540
|
+
alt?: string;
|
|
1541
|
+
/** JSONP */
|
|
1542
|
+
callback?: string;
|
|
1543
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1544
|
+
fields?: string;
|
|
1545
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1546
|
+
key?: string;
|
|
1547
|
+
/** OAuth 2.0 token for the current user. */
|
|
1548
|
+
oauth_token?: string;
|
|
1549
|
+
/** Required. The parent to create scim tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
|
|
1550
|
+
parent: string;
|
|
1551
|
+
/** Returns response with indentations and line breaks. */
|
|
1552
|
+
prettyPrint?: boolean;
|
|
1553
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1554
|
+
quotaUser?: string;
|
|
1555
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1556
|
+
upload_protocol?: string;
|
|
1557
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1558
|
+
uploadType?: string;
|
|
1559
|
+
/** Required. The ID to use for the scim tenant, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. */
|
|
1560
|
+
workforcePoolProviderScimTenantId?: string;
|
|
1561
|
+
},
|
|
1562
|
+
body: WorkforcePoolProviderScimTenant,
|
|
1563
|
+
): Request<WorkforcePoolProviderScimTenant>;
|
|
1564
|
+
/** Deletes a WorkforcePoolProviderScimTenant. You can undelete a scim tenant for 30 days. After 30 days, deletion is permanent. You cannot update deleted scim tenants. However, you can view and list them. */
|
|
1565
|
+
delete(request?: {
|
|
1566
|
+
/** V1 error format. */
|
|
1567
|
+
'$.xgafv'?: string;
|
|
1568
|
+
/** OAuth access token. */
|
|
1569
|
+
access_token?: string;
|
|
1570
|
+
/** Data format for response. */
|
|
1571
|
+
alt?: string;
|
|
1572
|
+
/** JSONP */
|
|
1573
|
+
callback?: string;
|
|
1574
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1575
|
+
fields?: string;
|
|
1576
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1577
|
+
key?: string;
|
|
1578
|
+
/** Required. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
|
|
1579
|
+
name: string;
|
|
1580
|
+
/** OAuth 2.0 token for the current user. */
|
|
1581
|
+
oauth_token?: string;
|
|
1582
|
+
/** Returns response with indentations and line breaks. */
|
|
1583
|
+
prettyPrint?: boolean;
|
|
1584
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1585
|
+
quotaUser?: string;
|
|
1586
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1587
|
+
upload_protocol?: string;
|
|
1588
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1589
|
+
uploadType?: string;
|
|
1590
|
+
}): Request<WorkforcePoolProviderScimTenant>;
|
|
1591
|
+
/** Gets an individual WorkforcePoolProviderScimTenant. */
|
|
1592
|
+
get(request?: {
|
|
1593
|
+
/** V1 error format. */
|
|
1594
|
+
'$.xgafv'?: string;
|
|
1595
|
+
/** OAuth access token. */
|
|
1596
|
+
access_token?: string;
|
|
1597
|
+
/** Data format for response. */
|
|
1598
|
+
alt?: string;
|
|
1599
|
+
/** JSONP */
|
|
1600
|
+
callback?: string;
|
|
1601
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1602
|
+
fields?: string;
|
|
1603
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1604
|
+
key?: string;
|
|
1605
|
+
/** Required. The name of the scim tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
|
|
1606
|
+
name: string;
|
|
1607
|
+
/** OAuth 2.0 token for the current user. */
|
|
1608
|
+
oauth_token?: string;
|
|
1609
|
+
/** Returns response with indentations and line breaks. */
|
|
1610
|
+
prettyPrint?: boolean;
|
|
1611
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1612
|
+
quotaUser?: string;
|
|
1613
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1614
|
+
upload_protocol?: string;
|
|
1615
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1616
|
+
uploadType?: string;
|
|
1617
|
+
}): Request<WorkforcePoolProviderScimTenant>;
|
|
1618
|
+
/** Lists all non-deleted WorkforcePoolProviderScimTenants in a WorkforcePoolProvider. If `show_deleted` is set to `true`, then deleted scim tenants are also listed. */
|
|
1619
|
+
list(request?: {
|
|
1620
|
+
/** V1 error format. */
|
|
1621
|
+
'$.xgafv'?: string;
|
|
1622
|
+
/** OAuth access token. */
|
|
1623
|
+
access_token?: string;
|
|
1624
|
+
/** Data format for response. */
|
|
1625
|
+
alt?: string;
|
|
1626
|
+
/** JSONP */
|
|
1627
|
+
callback?: string;
|
|
1628
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1629
|
+
fields?: string;
|
|
1630
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1631
|
+
key?: string;
|
|
1632
|
+
/** OAuth 2.0 token for the current user. */
|
|
1633
|
+
oauth_token?: string;
|
|
1634
|
+
/** Optional. The maximum number of scim tenants to return. If unspecified, at most 1 scim tenant will be returned. */
|
|
1635
|
+
pageSize?: number;
|
|
1636
|
+
/** Optional. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
|
|
1637
|
+
pageToken?: string;
|
|
1638
|
+
/** Required. The parent to list scim tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
|
|
1639
|
+
parent: string;
|
|
1640
|
+
/** Returns response with indentations and line breaks. */
|
|
1641
|
+
prettyPrint?: boolean;
|
|
1642
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1643
|
+
quotaUser?: string;
|
|
1644
|
+
/** Optional. Whether to return soft-deleted scim tenants. */
|
|
1645
|
+
showDeleted?: boolean;
|
|
1646
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1647
|
+
upload_protocol?: string;
|
|
1648
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1649
|
+
uploadType?: string;
|
|
1650
|
+
}): Request<ListWorkforcePoolProviderScimTenantsResponse>;
|
|
1651
|
+
/** Updates an existing WorkforcePoolProviderScimTenant. */
|
|
1652
|
+
patch(request: {
|
|
1653
|
+
/** V1 error format. */
|
|
1654
|
+
'$.xgafv'?: string;
|
|
1655
|
+
/** OAuth access token. */
|
|
1656
|
+
access_token?: string;
|
|
1657
|
+
/** Data format for response. */
|
|
1658
|
+
alt?: string;
|
|
1659
|
+
/** JSONP */
|
|
1660
|
+
callback?: string;
|
|
1661
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1662
|
+
fields?: string;
|
|
1663
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1664
|
+
key?: string;
|
|
1665
|
+
/** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
|
|
1666
|
+
name: string;
|
|
1667
|
+
/** OAuth 2.0 token for the current user. */
|
|
1668
|
+
oauth_token?: string;
|
|
1669
|
+
/** Returns response with indentations and line breaks. */
|
|
1670
|
+
prettyPrint?: boolean;
|
|
1671
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1672
|
+
quotaUser?: string;
|
|
1673
|
+
/** Optional. The list of fields to update. */
|
|
1674
|
+
updateMask?: string;
|
|
1675
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1676
|
+
upload_protocol?: string;
|
|
1677
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1678
|
+
uploadType?: string;
|
|
1679
|
+
/** Request body */
|
|
1680
|
+
resource: WorkforcePoolProviderScimTenant;
|
|
1681
|
+
}): Request<WorkforcePoolProviderScimTenant>;
|
|
1682
|
+
patch(
|
|
1683
|
+
request: {
|
|
1684
|
+
/** V1 error format. */
|
|
1685
|
+
'$.xgafv'?: string;
|
|
1686
|
+
/** OAuth access token. */
|
|
1687
|
+
access_token?: string;
|
|
1688
|
+
/** Data format for response. */
|
|
1689
|
+
alt?: string;
|
|
1690
|
+
/** JSONP */
|
|
1691
|
+
callback?: string;
|
|
1692
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1693
|
+
fields?: string;
|
|
1694
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1695
|
+
key?: string;
|
|
1696
|
+
/** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
|
|
1697
|
+
name: string;
|
|
1698
|
+
/** OAuth 2.0 token for the current user. */
|
|
1699
|
+
oauth_token?: string;
|
|
1700
|
+
/** Returns response with indentations and line breaks. */
|
|
1701
|
+
prettyPrint?: boolean;
|
|
1702
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1703
|
+
quotaUser?: string;
|
|
1704
|
+
/** Optional. The list of fields to update. */
|
|
1705
|
+
updateMask?: string;
|
|
1706
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1707
|
+
upload_protocol?: string;
|
|
1708
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1709
|
+
uploadType?: string;
|
|
1710
|
+
},
|
|
1711
|
+
body: WorkforcePoolProviderScimTenant,
|
|
1712
|
+
): Request<WorkforcePoolProviderScimTenant>;
|
|
1713
|
+
/** Undeletes a WorkforcePoolProviderScimTenant, as long as it was deleted fewer than 30 days ago. */
|
|
1714
|
+
undelete(request: {
|
|
1715
|
+
/** V1 error format. */
|
|
1716
|
+
'$.xgafv'?: string;
|
|
1717
|
+
/** OAuth access token. */
|
|
1718
|
+
access_token?: string;
|
|
1719
|
+
/** Data format for response. */
|
|
1720
|
+
alt?: string;
|
|
1721
|
+
/** JSONP */
|
|
1722
|
+
callback?: string;
|
|
1723
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1724
|
+
fields?: string;
|
|
1725
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1726
|
+
key?: string;
|
|
1727
|
+
/** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
|
|
1728
|
+
name: string;
|
|
1729
|
+
/** OAuth 2.0 token for the current user. */
|
|
1730
|
+
oauth_token?: string;
|
|
1731
|
+
/** Returns response with indentations and line breaks. */
|
|
1732
|
+
prettyPrint?: boolean;
|
|
1733
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1734
|
+
quotaUser?: string;
|
|
1735
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1736
|
+
upload_protocol?: string;
|
|
1737
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1738
|
+
uploadType?: string;
|
|
1739
|
+
/** Request body */
|
|
1740
|
+
resource: UndeleteWorkforcePoolProviderScimTenantRequest;
|
|
1741
|
+
}): Request<WorkforcePoolProviderScimTenant>;
|
|
1742
|
+
undelete(
|
|
1743
|
+
request: {
|
|
1744
|
+
/** V1 error format. */
|
|
1745
|
+
'$.xgafv'?: string;
|
|
1746
|
+
/** OAuth access token. */
|
|
1747
|
+
access_token?: string;
|
|
1748
|
+
/** Data format for response. */
|
|
1749
|
+
alt?: string;
|
|
1750
|
+
/** JSONP */
|
|
1751
|
+
callback?: string;
|
|
1752
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
1753
|
+
fields?: string;
|
|
1754
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
1755
|
+
key?: string;
|
|
1756
|
+
/** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
|
|
1757
|
+
name: string;
|
|
1758
|
+
/** OAuth 2.0 token for the current user. */
|
|
1759
|
+
oauth_token?: string;
|
|
1760
|
+
/** Returns response with indentations and line breaks. */
|
|
1761
|
+
prettyPrint?: boolean;
|
|
1762
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1763
|
+
quotaUser?: string;
|
|
1764
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1765
|
+
upload_protocol?: string;
|
|
1766
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1767
|
+
uploadType?: string;
|
|
1768
|
+
},
|
|
1769
|
+
body: UndeleteWorkforcePoolProviderScimTenantRequest,
|
|
1770
|
+
): Request<WorkforcePoolProviderScimTenant>;
|
|
1771
|
+
tokens: TokensResource;
|
|
1772
|
+
}
|
|
1188
1773
|
interface ProvidersResource {
|
|
1189
1774
|
/** Creates a new WorkforcePoolProvider in a WorkforcePool. You cannot reuse the name of a deleted provider until 30 days after deletion. */
|
|
1190
1775
|
create(request: {
|
|
@@ -1457,6 +2042,7 @@ declare namespace gapi.client {
|
|
|
1457
2042
|
): Request<Operation>;
|
|
1458
2043
|
keys: KeysResource;
|
|
1459
2044
|
operations: OperationsResource;
|
|
2045
|
+
scimTenants: ScimTenantsResource;
|
|
1460
2046
|
}
|
|
1461
2047
|
interface OperationsResource {
|
|
1462
2048
|
/** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
|