@maxim_mazurok/gapi.client.iam-v1 0.1.20250912 → 0.1.20250925

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 +73 -71
  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: 20250912
12
+ // Revision: 20250925
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 {
@@ -648,11 +648,11 @@ declare namespace gapi.client {
648
648
  interface WorkforcePool {
649
649
  /** Optional. Configure access restrictions on the workforce pool users. This is an optional field. If specified web sign-in can be restricted to given set of services or programmatic sign-in can be disabled for pool users. */
650
650
  accessRestrictions?: AccessRestrictions;
651
- /** Optional. A user-specified description of the pool. Cannot exceed 256 characters. */
651
+ /** Optional. A description of the pool. Cannot exceed 256 characters. */
652
652
  description?: string;
653
653
  /** Optional. Disables the workforce pool. You cannot use a disabled pool to exchange tokens, or use existing tokens to access resources. If the pool is re-enabled, existing tokens grant access again. */
654
654
  disabled?: boolean;
655
- /** Optional. A user-specified display name of the pool in Google Cloud Console. Cannot exceed 32 characters. */
655
+ /** Optional. A display name for the pool. Cannot exceed 32 characters. */
656
656
  displayName?: string;
657
657
  /** Output only. Time after which the workforce pool will be permanently purged and cannot be recovered. */
658
658
  expireTime?: string;
@@ -668,15 +668,15 @@ 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
- /** Optional. A user-specified description of the provider. Cannot exceed 256 characters. */
673
+ /** Optional. A description of the provider. Cannot exceed 256 characters. */
674
674
  description?: string;
675
675
  /** Optional. If true, populates additional debug information in Cloud Audit Logs for this provider. Logged attribute mappings and values can be found in `sts.googleapis.com` data access logs. Default value is false. */
676
676
  detailedAuditLogging?: boolean;
677
677
  /** Optional. Disables the workforce pool provider. You cannot use a disabled provider to exchange tokens. However, existing tokens still grant access. */
678
678
  disabled?: boolean;
679
- /** Optional. A user-specified display name for the provider. Cannot exceed 32 characters. */
679
+ /** Optional. A display name for the provider. Cannot exceed 32 characters. */
680
680
  displayName?: string;
681
681
  /** Output only. Time after which the workforce identity pool provider will be permanently purged and cannot be recovered. */
682
682
  expireTime?: 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 user-specified 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 user-specified 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 user-specified 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;
@@ -1575,7 +1577,7 @@ declare namespace gapi.client {
1575
1577
  fields?: string;
1576
1578
  /** 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
1579
  key?: string;
1578
- /** Required. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1580
+ /** Required. Agentspace only. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1579
1581
  name: string;
1580
1582
  /** OAuth 2.0 token for the current user. */
1581
1583
  oauth_token?: string;
@@ -1588,7 +1590,7 @@ declare namespace gapi.client {
1588
1590
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1589
1591
  uploadType?: string;
1590
1592
  }): Request<WorkforcePoolProviderScimTenant>;
1591
- /** Gets an individual WorkforcePoolProviderScimTenant. */
1593
+ /** Agentspace only. Gets an individual WorkforcePoolProviderScimTenant. */
1592
1594
  get(request?: {
1593
1595
  /** V1 error format. */
1594
1596
  '$.xgafv'?: string;
@@ -1602,7 +1604,7 @@ declare namespace gapi.client {
1602
1604
  fields?: string;
1603
1605
  /** 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
1606
  key?: string;
1605
- /** Required. The name of the scim tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1607
+ /** Required. Agentspace only. The name of the SCIM tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1606
1608
  name: string;
1607
1609
  /** OAuth 2.0 token for the current user. */
1608
1610
  oauth_token?: string;
@@ -1615,7 +1617,7 @@ declare namespace gapi.client {
1615
1617
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1616
1618
  uploadType?: string;
1617
1619
  }): 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. */
1620
+ /** 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
1621
  list(request?: {
1620
1622
  /** V1 error format. */
1621
1623
  '$.xgafv'?: string;
@@ -1631,24 +1633,24 @@ declare namespace gapi.client {
1631
1633
  key?: string;
1632
1634
  /** OAuth 2.0 token for the current user. */
1633
1635
  oauth_token?: string;
1634
- /** Optional. The maximum number of scim tenants to return. If unspecified, at most 1 scim tenant will be returned. */
1636
+ /** Optional. Agentspace only. The maximum number of SCIM tenants to return. If unspecified, at most 1 scim tenant will be returned. */
1635
1637
  pageSize?: number;
1636
- /** Optional. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1638
+ /** Optional. Agentspace only. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1637
1639
  pageToken?: string;
1638
- /** Required. The parent to list scim tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1640
+ /** Required. Agentspace only. The parent to list SCIM tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1639
1641
  parent: string;
1640
1642
  /** Returns response with indentations and line breaks. */
1641
1643
  prettyPrint?: boolean;
1642
1644
  /** 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
1645
  quotaUser?: string;
1644
- /** Optional. Whether to return soft-deleted scim tenants. */
1646
+ /** Optional. Agentspace only. Whether to return soft-deleted SCIM tenants. */
1645
1647
  showDeleted?: boolean;
1646
1648
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1647
1649
  upload_protocol?: string;
1648
1650
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1649
1651
  uploadType?: string;
1650
1652
  }): Request<ListWorkforcePoolProviderScimTenantsResponse>;
1651
- /** Updates an existing WorkforcePoolProviderScimTenant. */
1653
+ /** Agentspace only. Updates an existing WorkforcePoolProviderScimTenant. */
1652
1654
  patch(request: {
1653
1655
  /** V1 error format. */
1654
1656
  '$.xgafv'?: string;
@@ -1662,7 +1664,7 @@ declare namespace gapi.client {
1662
1664
  fields?: string;
1663
1665
  /** 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
1666
  key?: string;
1665
- /** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1667
+ /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1666
1668
  name: string;
1667
1669
  /** OAuth 2.0 token for the current user. */
1668
1670
  oauth_token?: string;
@@ -1670,7 +1672,7 @@ declare namespace gapi.client {
1670
1672
  prettyPrint?: boolean;
1671
1673
  /** 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
1674
  quotaUser?: string;
1673
- /** Optional. The list of fields to update. */
1675
+ /** Optional. Agentspace only. The list of fields to update. */
1674
1676
  updateMask?: string;
1675
1677
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1676
1678
  upload_protocol?: string;
@@ -1693,7 +1695,7 @@ declare namespace gapi.client {
1693
1695
  fields?: string;
1694
1696
  /** 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
1697
  key?: string;
1696
- /** Identifier. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1698
+ /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1697
1699
  name: string;
1698
1700
  /** OAuth 2.0 token for the current user. */
1699
1701
  oauth_token?: string;
@@ -1701,7 +1703,7 @@ declare namespace gapi.client {
1701
1703
  prettyPrint?: boolean;
1702
1704
  /** 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
1705
  quotaUser?: string;
1704
- /** Optional. The list of fields to update. */
1706
+ /** Optional. Agentspace only. The list of fields to update. */
1705
1707
  updateMask?: string;
1706
1708
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1707
1709
  upload_protocol?: string;
@@ -1710,7 +1712,7 @@ declare namespace gapi.client {
1710
1712
  },
1711
1713
  body: WorkforcePoolProviderScimTenant,
1712
1714
  ): Request<WorkforcePoolProviderScimTenant>;
1713
- /** Undeletes a WorkforcePoolProviderScimTenant, as long as it was deleted fewer than 30 days ago. */
1715
+ /** Agentspace only. Undeletes a WorkforcePoolProviderScimTenant, that was deleted fewer than 30 days ago. */
1714
1716
  undelete(request: {
1715
1717
  /** V1 error format. */
1716
1718
  '$.xgafv'?: string;
@@ -1724,7 +1726,7 @@ declare namespace gapi.client {
1724
1726
  fields?: string;
1725
1727
  /** 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
1728
  key?: string;
1727
- /** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1729
+ /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1728
1730
  name: string;
1729
1731
  /** OAuth 2.0 token for the current user. */
1730
1732
  oauth_token?: string;
@@ -1753,7 +1755,7 @@ declare namespace gapi.client {
1753
1755
  fields?: string;
1754
1756
  /** 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
1757
  key?: string;
1756
- /** Required. The name of the scim tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1758
+ /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1757
1759
  name: string;
1758
1760
  /** OAuth 2.0 token for the current user. */
1759
1761
  oauth_token?: string;
@@ -3627,7 +3629,7 @@ declare namespace gapi.client {
3627
3629
  fields?: string;
3628
3630
  /** 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
3631
  key?: string;
3630
- /** Identifier. The resource name of the managed identity. */
3632
+ /** Output only. The resource name of the managed identity. */
3631
3633
  name: string;
3632
3634
  /** OAuth 2.0 token for the current user. */
3633
3635
  oauth_token?: string;
@@ -3658,7 +3660,7 @@ declare namespace gapi.client {
3658
3660
  fields?: string;
3659
3661
  /** 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
3662
  key?: string;
3661
- /** Identifier. The resource name of the managed identity. */
3663
+ /** Output only. The resource name of the managed identity. */
3662
3664
  name: string;
3663
3665
  /** OAuth 2.0 token for the current user. */
3664
3666
  oauth_token?: string;
@@ -4559,7 +4561,7 @@ declare namespace gapi.client {
4559
4561
  fields?: string;
4560
4562
  /** 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
4563
  key?: string;
4562
- /** Identifier. The resource name of the provider. */
4564
+ /** Output only. The resource name of the provider. */
4563
4565
  name: string;
4564
4566
  /** OAuth 2.0 token for the current user. */
4565
4567
  oauth_token?: string;
@@ -4590,7 +4592,7 @@ declare namespace gapi.client {
4590
4592
  fields?: string;
4591
4593
  /** 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
4594
  key?: string;
4593
- /** Identifier. The resource name of the provider. */
4595
+ /** Output only. The resource name of the provider. */
4594
4596
  name: string;
4595
4597
  /** OAuth 2.0 token for the current user. */
4596
4598
  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.20250912",
3
+ "version": "0.1.20250925",
4
4
  "description": "TypeScript typings for Identity and Access Management (IAM) API v1",
5
5
  "repository": {
6
6
  "type": "git",