@maxim_mazurok/gapi.client.iam-v1 0.1.20250919 → 0.1.20251003

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.
Files changed (2) hide show
  1. package/index.d.ts +71 -67
  2. 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: 20250919
12
+ // Revision: 20251003
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -279,15 +279,15 @@ declare namespace gapi.client {
279
279
  workforcePoolProviderKeys?: WorkforcePoolProviderKey[];
280
280
  }
281
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. */
282
+ /** Optional. Agentspace only. 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
283
  nextPageToken?: string;
284
- /** Output only. A list of scim tenants. */
284
+ /** Output only. Agentspace only. A list of SCIM tenants. */
285
285
  workforcePoolProviderScimTenants?: WorkforcePoolProviderScimTenant[];
286
286
  }
287
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. */
288
+ /** Optional. Agentspace only. 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
289
  nextPageToken?: string;
290
- /** Output only. A list of scim tokens. */
290
+ /** Output only. Agentspace only. A list of SCIM tokens. */
291
291
  workforcePoolProviderScimTokens?: WorkforcePoolProviderScimToken[];
292
292
  }
293
293
  interface ListWorkforcePoolProvidersResponse {
@@ -668,7 +668,7 @@ declare namespace gapi.client {
668
668
  interface WorkforcePoolProvider {
669
669
  /** Optional. A [Common Expression Language](https://opensource.google/projects/cel) expression, in plain text, to restrict what otherwise valid authentication credentials issued by the provider should not be accepted. The expression must output a boolean representing whether to allow the federation. The following keywords may be referenced in the expressions: * `assertion`: JSON representing the authentication credential issued by the provider. * `google`: The Google attributes mapped from the assertion in the `attribute_mappings`. `google.profile_photo`, `google.display_name` and `google.posix_username` are not supported. * `attribute`: The custom attributes mapped from the assertion in the `attribute_mappings`. The maximum length of the attribute condition expression is 4096 characters. If unspecified, all valid authentication credentials will be accepted. The following example shows how to only allow credentials with a mapped `google.groups` value of `admins`: ``` "'admins' in google.groups" ``` */
670
670
  attributeCondition?: string;
671
- /** Required. Maps attributes from the authentication credentials issued by an external identity provider to Google Cloud attributes, such as `subject` and `segment`. Each key must be a string specifying the Google Cloud IAM attribute to map to. The following keys are supported: * `google.subject`: The principal IAM is authenticating. You can reference this value in IAM bindings. This is also the subject that appears in Cloud Logging logs. This is a required field and the mapped subject cannot exceed 127 bytes. * `google.groups`: Groups the authenticating user belongs to. You can grant groups access to resources using an IAM `principalSet` binding; access applies to all members of the group. * `google.display_name`: The name of the authenticated user. This is an optional field and the mapped display name cannot exceed 100 bytes. If not set, `google.subject` will be displayed instead. This attribute cannot be referenced in IAM bindings. * `google.profile_photo`: The URL that specifies the authenticated user's thumbnail photo. This is an optional field. When set, the image will be visible as the user's profile picture. If not set, a generic user icon will be displayed instead. This attribute cannot be referenced in IAM bindings. * `google.posix_username`: The Linux username used by OS Login. This is an optional field and the mapped POSIX username cannot exceed 32 characters, The key must match the regex "^a-zA-Z0-9._{0,31}$". This attribute cannot be referenced in IAM bindings. You can also provide custom attributes by specifying `attribute.{custom_attribute}`, where {custom_attribute} is the name of the custom attribute to be mapped. You can define a maximum of 50 custom attributes. The maximum length of a mapped attribute key is 100 characters, and the key may only contain the characters [a-z0-9_]. You can reference these attributes in IAM policies to define fine-grained access for a workforce pool to Google Cloud resources. For example: * `google.subject`: `principal://iam.googleapis.com/locations/global/workforcePools/{pool}/subject/{value}` * `google.groups`: `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool}/group/{value}` * `attribute.{custom_attribute}`: `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool}/attribute.{custom_attribute}/{value}` Each value must be a [Common Expression Language] (https://opensource.google/projects/cel) function that maps an identity provider credential to the normalized attribute specified by the corresponding map key. You can use the `assertion` keyword in the expression to access a JSON representation of the authentication credential issued by the provider. The maximum length of an attribute mapping expression is 2048 characters. When evaluated, the total size of all mapped attributes must not exceed 4KB. For OIDC providers, you must supply a custom mapping that includes the `google.subject` attribute. For example, the following maps the `sub` claim of the incoming credential to the `subject` attribute on a Google token: ``` {"google.subject": "assertion.sub"} ``` */
671
+ /** Required. Maps attributes from the authentication credentials issued by an external identity provider to Google Cloud attributes, such as `subject` and `segment`. Each key must be a string specifying the Google Cloud IAM attribute to map to. The following keys are supported: * `google.subject`: The principal IAM is authenticating. You can reference this value in IAM bindings. This is also the subject that appears in Cloud Logging logs. This is a required field and the mapped subject cannot exceed 127 bytes. * `google.groups`: Groups the authenticating user belongs to. You can grant groups access to resources using an IAM `principalSet` binding; access applies to all members of the group. * `google.display_name`: The name of the authenticated user. This is an optional field and the mapped display name cannot exceed 100 bytes. If not set, `google.subject` will be displayed instead. This attribute cannot be referenced in IAM bindings. * `google.profile_photo`: The URL that specifies the authenticated user's thumbnail photo. This is an optional field. When set, the image will be visible as the user's profile picture. If not set, a generic user icon will be displayed instead. This attribute cannot be referenced in IAM bindings. * `google.posix_username`: The Linux username used by OS Login. This is an optional field and the mapped POSIX username cannot exceed 32 characters, The key must match the regex "^a-zA-Z0-9._{0,31}$". This attribute cannot be referenced in IAM bindings. You can also provide custom attributes by specifying `attribute.{custom_attribute}`, where {custom_attribute} is the name of the custom attribute to be mapped. You can define a maximum of 50 custom attributes. The maximum length of a mapped attribute key is 100 characters, and the key may only contain the characters [a-z0-9_]. You can reference these attributes in IAM policies to define fine-grained access for a workforce pool to Google Cloud resources. For example: * `google.subject`: `principal://iam.googleapis.com/locations/global/workforcePools/{pool}/subject/{value}` * `google.groups`: `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool}/group/{value}` * `attribute.{custom_attribute}`: `principalSet://iam.googleapis.com/locations/global/workforcePools/{pool}/attribute.{custom_attribute}/{value}` Each value must be a [Common Expression Language] (https://opensource.google/projects/cel) function that maps an identity provider credential to the normalized attribute specified by the corresponding map key. You can use the `assertion` keyword in the expression to access a JSON representation of the authentication credential issued by the provider. The maximum length of an attribute mapping expression is 2048 characters. When evaluated, the total size of all mapped attributes must not exceed 16 KB. For OIDC providers, you must supply a custom mapping that includes the `google.subject` attribute. For example, the following maps the `sub` claim of the incoming credential to the `subject` attribute on a Google token: ``` {"google.subject": "assertion.sub"} ``` */
672
672
  attributeMapping?: {[P in string]: string};
673
673
  /** Optional. A description of the provider. Cannot exceed 256 characters. */
674
674
  description?: string;
@@ -706,29 +706,31 @@ declare namespace gapi.client {
706
706
  use?: string;
707
707
  }
708
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}/ */
709
+ /** Output only. Agentspace 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
710
  baseUri?: string;
711
- /** Optional. Maps BYOID claims to SCIM claims. */
711
+ /** Optional. Agentspace only. Maps BYOID claims to SCIM claims. */
712
712
  claimMapping?: {[P in string]: string};
713
- /** Optional. The description of the scim tenant. Cannot exceed 256 characters. */
713
+ /** Optional. Agentspace only. The description of the SCIM tenant. Cannot exceed 256 characters. */
714
714
  description?: string;
715
- /** Optional. The display name of the scim tenant. Cannot exceed 32 characters. */
715
+ /** Optional. Agentspace only. The display name of the SCIM tenant. Cannot exceed 32 characters. */
716
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}` */
717
+ /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
718
718
  name?: string;
719
- /** Output only. The timestamp when the scim tenant is going to be purged. */
719
+ /** Output only. Agentspace only. The timestamp that represents the time when the SCIM tenant is purged. */
720
720
  purgeTime?: string;
721
- /** Output only. The state of the tenant. */
721
+ /** Output only. Service Agent created by SCIM Tenant API. SCIM tokens created under this tenant will be attached to this service agent. */
722
+ serviceAgent?: string;
723
+ /** Output only. Agentspace only. The state of the tenant. */
722
724
  state?: string;
723
725
  }
724
726
  interface WorkforcePoolProviderScimToken {
725
- /** Optional. The display name of the scim token. Cannot exceed 32 characters. */
727
+ /** Optional. Agentspace only. The display name of the SCIM token. Cannot exceed 32 characters. */
726
728
  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}` */
729
+ /** Identifier. Agentspace only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
728
730
  name?: string;
729
- /** Output only. The token string. Provide this to the IdP for authentication. Will be set only during creation. */
731
+ /** Output only. Agentspace only. The token string. Provide this to the IdP for authentication. Will be set only during creation. */
730
732
  securityToken?: string;
731
- /** Output only. The state of the token. */
733
+ /** Output only. Agentspace only. The state of the token. */
732
734
  state?: string;
733
735
  }
734
736
  interface WorkloadIdentityPool {
@@ -758,7 +760,7 @@ declare namespace gapi.client {
758
760
  disabled?: boolean;
759
761
  /** Output only. Time after which the managed identity will be permanently purged and cannot be recovered. */
760
762
  expireTime?: string;
761
- /** Identifier. The resource name of the managed identity. */
763
+ /** Output only. The resource name of the managed identity. */
762
764
  name?: string;
763
765
  /** Output only. The state of the managed identity. */
764
766
  state?: string;
@@ -793,7 +795,7 @@ declare namespace gapi.client {
793
795
  displayName?: string;
794
796
  /** Output only. Time after which the workload identity pool provider will be permanently purged and cannot be recovered. */
795
797
  expireTime?: string;
796
- /** Identifier. The resource name of the provider. */
798
+ /** Output only. The resource name of the provider. */
797
799
  name?: string;
798
800
  /** An OpenId Connect 1.0 identity provider. */
799
801
  oidc?: Oidc;
@@ -1228,7 +1230,7 @@ declare namespace gapi.client {
1228
1230
  }): Request<Operation>;
1229
1231
  }
1230
1232
  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. */
1233
+ /** Agentspace only. Creates a new WorkforcePoolProviderScimToken in a WorkforcePoolProviderScimTenant. You cannot reuse the name of a deleted SCIM token until 30 days after deletion. */
1232
1234
  create(request: {
1233
1235
  /** V1 error format. */
1234
1236
  '$.xgafv'?: string;
@@ -1244,7 +1246,7 @@ declare namespace gapi.client {
1244
1246
  key?: string;
1245
1247
  /** OAuth 2.0 token for the current user. */
1246
1248
  oauth_token?: string;
1247
- /** Required. The parent tenant to create scim token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1249
+ /** Required. Agentspace only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1248
1250
  parent: string;
1249
1251
  /** Returns response with indentations and line breaks. */
1250
1252
  prettyPrint?: boolean;
@@ -1254,7 +1256,7 @@ declare namespace gapi.client {
1254
1256
  upload_protocol?: string;
1255
1257
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1256
1258
  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]))" */
1259
+ /** Required. Agentspace only. 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 the pattern: "([a-z]([a-z0-9\\-]{2,30}[a-z0-9]))" */
1258
1260
  workforcePoolProviderScimTokenId?: string;
1259
1261
  /** Request body */
1260
1262
  resource: WorkforcePoolProviderScimToken;
@@ -1275,7 +1277,7 @@ declare namespace gapi.client {
1275
1277
  key?: string;
1276
1278
  /** OAuth 2.0 token for the current user. */
1277
1279
  oauth_token?: string;
1278
- /** Required. The parent tenant to create scim token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1280
+ /** Required. Agentspace only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1279
1281
  parent: string;
1280
1282
  /** Returns response with indentations and line breaks. */
1281
1283
  prettyPrint?: boolean;
@@ -1285,12 +1287,12 @@ declare namespace gapi.client {
1285
1287
  upload_protocol?: string;
1286
1288
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1287
1289
  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]))" */
1290
+ /** Required. Agentspace only. 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 the pattern: "([a-z]([a-z0-9\\-]{2,30}[a-z0-9]))" */
1289
1291
  workforcePoolProviderScimTokenId?: string;
1290
1292
  },
1291
1293
  body: WorkforcePoolProviderScimToken,
1292
1294
  ): 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. */
1295
+ /** Agentspace only. Deletes a WorkforcePoolProviderScimToken. You can undelete a SCIM token for 30 days. After 30 days, the SCIM token is permanently deleted. You cannot update deleted SCIM tokens, however, you can view and list them. */
1294
1296
  delete(request?: {
1295
1297
  /** V1 error format. */
1296
1298
  '$.xgafv'?: string;
@@ -1304,7 +1306,7 @@ declare namespace gapi.client {
1304
1306
  fields?: string;
1305
1307
  /** 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
1308
  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}` */
1309
+ /** Required. Agentspace only. The name of the SCIM token to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1308
1310
  name: string;
1309
1311
  /** OAuth 2.0 token for the current user. */
1310
1312
  oauth_token?: string;
@@ -1317,7 +1319,7 @@ declare namespace gapi.client {
1317
1319
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1318
1320
  uploadType?: string;
1319
1321
  }): Request<WorkforcePoolProviderScimToken>;
1320
- /** Gets an individual WorkforcePoolProviderScimToken. */
1322
+ /** Agentspace only. Gets an individual WorkforcePoolProviderScimToken. */
1321
1323
  get(request?: {
1322
1324
  /** V1 error format. */
1323
1325
  '$.xgafv'?: string;
@@ -1331,7 +1333,7 @@ declare namespace gapi.client {
1331
1333
  fields?: string;
1332
1334
  /** 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
1335
  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}` */
1336
+ /** Required. Agentspace only. The name of the SCIM token to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1335
1337
  name: string;
1336
1338
  /** OAuth 2.0 token for the current user. */
1337
1339
  oauth_token?: string;
@@ -1344,7 +1346,7 @@ declare namespace gapi.client {
1344
1346
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1345
1347
  uploadType?: string;
1346
1348
  }): 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. */
1349
+ /** Agentspace only. Lists all non-deleted WorkforcePoolProviderScimTokenss in a WorkforcePoolProviderScimTenant. If `show_deleted` is set to `true`, then deleted SCIM tokens are also listed. */
1348
1350
  list(request?: {
1349
1351
  /** V1 error format. */
1350
1352
  '$.xgafv'?: string;
@@ -1360,24 +1362,24 @@ declare namespace gapi.client {
1360
1362
  key?: string;
1361
1363
  /** OAuth 2.0 token for the current user. */
1362
1364
  oauth_token?: string;
1363
- /** Optional. The maximum number of scim tokens to return. If unspecified, at most 2 scim tokens will be returned. */
1365
+ /** Optional. Agentspace only. The maximum number of scim tokens to return. If unspecified, at most 2 SCIM tokens will be returned. */
1364
1366
  pageSize?: number;
1365
- /** Optional. A page token, received from a previous `ListWorkforcePoolProviderScimTokens` call. Provide this to retrieve the subsequent page. */
1367
+ /** Optional. Agentspace only. A page token, received from a previous `ListWorkforcePoolProviderScimTokens` call. Provide this to retrieve the subsequent page. */
1366
1368
  pageToken?: string;
1367
- /** Required. The parent to list scim tokens. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1369
+ /** Required. Agentspace only. The parent to list SCIM tokens. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1368
1370
  parent: string;
1369
1371
  /** Returns response with indentations and line breaks. */
1370
1372
  prettyPrint?: boolean;
1371
1373
  /** 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
1374
  quotaUser?: string;
1373
- /** Optional. Whether to return soft-deleted scim tokens. */
1375
+ /** Optional. Agentspace only. Whether to return soft-deleted scim tokens. */
1374
1376
  showDeleted?: boolean;
1375
1377
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1376
1378
  upload_protocol?: string;
1377
1379
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1378
1380
  uploadType?: string;
1379
1381
  }): Request<ListWorkforcePoolProviderScimTokensResponse>;
1380
- /** Updates an existing WorkforcePoolProviderScimToken. */
1382
+ /** Agentspace only. Updates an existing WorkforcePoolProviderScimToken. */
1381
1383
  patch(request: {
1382
1384
  /** V1 error format. */
1383
1385
  '$.xgafv'?: string;
@@ -1391,7 +1393,7 @@ declare namespace gapi.client {
1391
1393
  fields?: string;
1392
1394
  /** 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
1395
  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}` */
1396
+ /** Identifier. Agentspace only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1395
1397
  name: string;
1396
1398
  /** OAuth 2.0 token for the current user. */
1397
1399
  oauth_token?: string;
@@ -1399,7 +1401,7 @@ declare namespace gapi.client {
1399
1401
  prettyPrint?: boolean;
1400
1402
  /** 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
1403
  quotaUser?: string;
1402
- /** Optional. The list of fields to update. */
1404
+ /** Optional. Agentspace only. The list of fields to update. */
1403
1405
  updateMask?: string;
1404
1406
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1405
1407
  upload_protocol?: string;
@@ -1422,7 +1424,7 @@ declare namespace gapi.client {
1422
1424
  fields?: string;
1423
1425
  /** 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
1426
  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}` */
1427
+ /** Identifier. Agentspace only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1426
1428
  name: string;
1427
1429
  /** OAuth 2.0 token for the current user. */
1428
1430
  oauth_token?: string;
@@ -1430,7 +1432,7 @@ declare namespace gapi.client {
1430
1432
  prettyPrint?: boolean;
1431
1433
  /** 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
1434
  quotaUser?: string;
1433
- /** Optional. The list of fields to update. */
1435
+ /** Optional. Agentspace only. The list of fields to update. */
1434
1436
  updateMask?: string;
1435
1437
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1436
1438
  upload_protocol?: string;
@@ -1439,7 +1441,7 @@ declare namespace gapi.client {
1439
1441
  },
1440
1442
  body: WorkforcePoolProviderScimToken,
1441
1443
  ): Request<WorkforcePoolProviderScimToken>;
1442
- /** Undeletes a WorkforcePoolProviderScimToken, as long as it was deleted fewer than 30 days ago. */
1444
+ /** Agentspace only. Undeletes a WorkforcePoolProviderScimToken,that was deleted fewer than 30 days ago. */
1443
1445
  undelete(request: {
1444
1446
  /** V1 error format. */
1445
1447
  '$.xgafv'?: string;
@@ -1453,7 +1455,7 @@ declare namespace gapi.client {
1453
1455
  fields?: string;
1454
1456
  /** 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
1457
  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}` */
1458
+ /** Required. Agentspace only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1457
1459
  name: string;
1458
1460
  /** OAuth 2.0 token for the current user. */
1459
1461
  oauth_token?: string;
@@ -1482,7 +1484,7 @@ declare namespace gapi.client {
1482
1484
  fields?: string;
1483
1485
  /** 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
1486
  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}` */
1487
+ /** Required. Agentspace only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1486
1488
  name: string;
1487
1489
  /** OAuth 2.0 token for the current user. */
1488
1490
  oauth_token?: string;
@@ -1499,7 +1501,7 @@ declare namespace gapi.client {
1499
1501
  ): Request<WorkforcePoolProviderScimToken>;
1500
1502
  }
1501
1503
  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. */
1504
+ /** Agentspace only. Creates a new WorkforcePoolProviderScimTenant in a WorkforcePoolProvider. You cannot reuse the name of a deleted SCIM tenant until 30 days after deletion. */
1503
1505
  create(request: {
1504
1506
  /** V1 error format. */
1505
1507
  '$.xgafv'?: string;
@@ -1515,7 +1517,7 @@ declare namespace gapi.client {
1515
1517
  key?: string;
1516
1518
  /** OAuth 2.0 token for the current user. */
1517
1519
  oauth_token?: string;
1518
- /** Required. The parent to create scim tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1520
+ /** Required. Agentspace only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1519
1521
  parent: string;
1520
1522
  /** Returns response with indentations and line breaks. */
1521
1523
  prettyPrint?: boolean;
@@ -1525,7 +1527,7 @@ declare namespace gapi.client {
1525
1527
  upload_protocol?: string;
1526
1528
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1527
1529
  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-]. */
1530
+ /** Required. Agentspace only. The ID to use for the SCIM tenant, which becomes the final component of the resource name. This value should be 4-32 characters, containing the characters [a-z0-9-]. */
1529
1531
  workforcePoolProviderScimTenantId?: string;
1530
1532
  /** Request body */
1531
1533
  resource: WorkforcePoolProviderScimTenant;
@@ -1546,7 +1548,7 @@ declare namespace gapi.client {
1546
1548
  key?: string;
1547
1549
  /** OAuth 2.0 token for the current user. */
1548
1550
  oauth_token?: string;
1549
- /** Required. The parent to create scim tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1551
+ /** Required. Agentspace only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1550
1552
  parent: string;
1551
1553
  /** Returns response with indentations and line breaks. */
1552
1554
  prettyPrint?: boolean;
@@ -1556,12 +1558,12 @@ declare namespace gapi.client {
1556
1558
  upload_protocol?: string;
1557
1559
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1558
1560
  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-]. */
1561
+ /** Required. Agentspace only. The ID to use for the SCIM tenant, which becomes the final component of the resource name. This value should be 4-32 characters, containing the characters [a-z0-9-]. */
1560
1562
  workforcePoolProviderScimTenantId?: string;
1561
1563
  },
1562
1564
  body: WorkforcePoolProviderScimTenant,
1563
1565
  ): 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. */
1566
+ /** Agentspace only. 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
1567
  delete(request?: {
1566
1568
  /** V1 error format. */
1567
1569
  '$.xgafv'?: string;
@@ -1573,9 +1575,11 @@ declare namespace gapi.client {
1573
1575
  callback?: string;
1574
1576
  /** Selector specifying which fields to include in a partial response. */
1575
1577
  fields?: string;
1578
+ /** Optional. Deletes the SCIM tenant immediately. This operation cannot be undone. */
1579
+ hardDelete?: boolean;
1576
1580
  /** 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
1581
  key?: string;
1578
- /** Required. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1582
+ /** Required. Agentspace only. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1579
1583
  name: string;
1580
1584
  /** OAuth 2.0 token for the current user. */
1581
1585
  oauth_token?: string;
@@ -1588,7 +1592,7 @@ declare namespace gapi.client {
1588
1592
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1589
1593
  uploadType?: string;
1590
1594
  }): Request<WorkforcePoolProviderScimTenant>;
1591
- /** Gets an individual WorkforcePoolProviderScimTenant. */
1595
+ /** Agentspace only. Gets an individual WorkforcePoolProviderScimTenant. */
1592
1596
  get(request?: {
1593
1597
  /** V1 error format. */
1594
1598
  '$.xgafv'?: string;
@@ -1602,7 +1606,7 @@ declare namespace gapi.client {
1602
1606
  fields?: string;
1603
1607
  /** 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
1608
  key?: string;
1605
- /** Required. The name of the scim tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1609
+ /** Required. Agentspace only. The name of the SCIM tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1606
1610
  name: string;
1607
1611
  /** OAuth 2.0 token for the current user. */
1608
1612
  oauth_token?: string;
@@ -1615,7 +1619,7 @@ declare namespace gapi.client {
1615
1619
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1616
1620
  uploadType?: string;
1617
1621
  }): 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. */
1622
+ /** Agentspace only. Lists all non-deleted WorkforcePoolProviderScimTenants in a WorkforcePoolProvider. If `show_deleted` is set to `true`, then deleted SCIM tenants are also listed. */
1619
1623
  list(request?: {
1620
1624
  /** V1 error format. */
1621
1625
  '$.xgafv'?: string;
@@ -1631,24 +1635,24 @@ declare namespace gapi.client {
1631
1635
  key?: string;
1632
1636
  /** OAuth 2.0 token for the current user. */
1633
1637
  oauth_token?: string;
1634
- /** Optional. The maximum number of scim tenants to return. If unspecified, at most 1 scim tenant will be returned. */
1638
+ /** Optional. Agentspace only. The maximum number of SCIM tenants to return. If unspecified, at most 1 scim tenant will be returned. */
1635
1639
  pageSize?: number;
1636
- /** Optional. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1640
+ /** Optional. Agentspace only. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1637
1641
  pageToken?: string;
1638
- /** Required. The parent to list scim tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1642
+ /** Required. Agentspace only. The parent to list SCIM tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1639
1643
  parent: string;
1640
1644
  /** Returns response with indentations and line breaks. */
1641
1645
  prettyPrint?: boolean;
1642
1646
  /** 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
1647
  quotaUser?: string;
1644
- /** Optional. Whether to return soft-deleted scim tenants. */
1648
+ /** Optional. Agentspace only. Whether to return soft-deleted SCIM tenants. */
1645
1649
  showDeleted?: boolean;
1646
1650
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1647
1651
  upload_protocol?: string;
1648
1652
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1649
1653
  uploadType?: string;
1650
1654
  }): Request<ListWorkforcePoolProviderScimTenantsResponse>;
1651
- /** Updates an existing WorkforcePoolProviderScimTenant. */
1655
+ /** Agentspace only. Updates an existing WorkforcePoolProviderScimTenant. */
1652
1656
  patch(request: {
1653
1657
  /** V1 error format. */
1654
1658
  '$.xgafv'?: string;
@@ -1662,7 +1666,7 @@ declare namespace gapi.client {
1662
1666
  fields?: string;
1663
1667
  /** 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
1668
  key?: string;
1665
- /** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1669
+ /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1666
1670
  name: string;
1667
1671
  /** OAuth 2.0 token for the current user. */
1668
1672
  oauth_token?: string;
@@ -1670,7 +1674,7 @@ declare namespace gapi.client {
1670
1674
  prettyPrint?: boolean;
1671
1675
  /** 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
1676
  quotaUser?: string;
1673
- /** Optional. The list of fields to update. */
1677
+ /** Optional. Agentspace only. The list of fields to update. */
1674
1678
  updateMask?: string;
1675
1679
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1676
1680
  upload_protocol?: string;
@@ -1693,7 +1697,7 @@ declare namespace gapi.client {
1693
1697
  fields?: string;
1694
1698
  /** 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
1699
  key?: string;
1696
- /** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1700
+ /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1697
1701
  name: string;
1698
1702
  /** OAuth 2.0 token for the current user. */
1699
1703
  oauth_token?: string;
@@ -1701,7 +1705,7 @@ declare namespace gapi.client {
1701
1705
  prettyPrint?: boolean;
1702
1706
  /** 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
1707
  quotaUser?: string;
1704
- /** Optional. The list of fields to update. */
1708
+ /** Optional. Agentspace only. The list of fields to update. */
1705
1709
  updateMask?: string;
1706
1710
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1707
1711
  upload_protocol?: string;
@@ -1710,7 +1714,7 @@ declare namespace gapi.client {
1710
1714
  },
1711
1715
  body: WorkforcePoolProviderScimTenant,
1712
1716
  ): Request<WorkforcePoolProviderScimTenant>;
1713
- /** Undeletes a WorkforcePoolProviderScimTenant, as long as it was deleted fewer than 30 days ago. */
1717
+ /** Agentspace only. Undeletes a WorkforcePoolProviderScimTenant, that was deleted fewer than 30 days ago. */
1714
1718
  undelete(request: {
1715
1719
  /** V1 error format. */
1716
1720
  '$.xgafv'?: string;
@@ -1724,7 +1728,7 @@ declare namespace gapi.client {
1724
1728
  fields?: string;
1725
1729
  /** 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
1730
  key?: string;
1727
- /** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1731
+ /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1728
1732
  name: string;
1729
1733
  /** OAuth 2.0 token for the current user. */
1730
1734
  oauth_token?: string;
@@ -1753,7 +1757,7 @@ declare namespace gapi.client {
1753
1757
  fields?: string;
1754
1758
  /** 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
1759
  key?: string;
1756
- /** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1760
+ /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1757
1761
  name: string;
1758
1762
  /** OAuth 2.0 token for the current user. */
1759
1763
  oauth_token?: string;
@@ -3627,7 +3631,7 @@ declare namespace gapi.client {
3627
3631
  fields?: string;
3628
3632
  /** 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. */
3629
3633
  key?: string;
3630
- /** Identifier. The resource name of the managed identity. */
3634
+ /** Output only. The resource name of the managed identity. */
3631
3635
  name: string;
3632
3636
  /** OAuth 2.0 token for the current user. */
3633
3637
  oauth_token?: string;
@@ -3658,7 +3662,7 @@ declare namespace gapi.client {
3658
3662
  fields?: string;
3659
3663
  /** 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. */
3660
3664
  key?: string;
3661
- /** Identifier. The resource name of the managed identity. */
3665
+ /** Output only. The resource name of the managed identity. */
3662
3666
  name: string;
3663
3667
  /** OAuth 2.0 token for the current user. */
3664
3668
  oauth_token?: string;
@@ -4559,7 +4563,7 @@ declare namespace gapi.client {
4559
4563
  fields?: string;
4560
4564
  /** 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. */
4561
4565
  key?: string;
4562
- /** Identifier. The resource name of the provider. */
4566
+ /** Output only. The resource name of the provider. */
4563
4567
  name: string;
4564
4568
  /** OAuth 2.0 token for the current user. */
4565
4569
  oauth_token?: string;
@@ -4590,7 +4594,7 @@ declare namespace gapi.client {
4590
4594
  fields?: string;
4591
4595
  /** 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. */
4592
4596
  key?: string;
4593
- /** Identifier. The resource name of the provider. */
4597
+ /** Output only. The resource name of the provider. */
4594
4598
  name: string;
4595
4599
  /** OAuth 2.0 token for the current user. */
4596
4600
  oauth_token?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.iam-v1",
3
- "version": "0.1.20250919",
3
+ "version": "0.1.20251003",
4
4
  "description": "TypeScript typings for Identity and Access Management (IAM) API v1",
5
5
  "repository": {
6
6
  "type": "git",