@maxim_mazurok/gapi.client.iam-v1 0.1.20251031 → 0.1.20251204

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 +67 -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: 20251031
12
+ // Revision: 20251204
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -159,7 +159,7 @@ declare namespace gapi.client {
159
159
  clientSecret?: GoogleIamAdminV1WorkforcePoolProviderOidcClientSecret;
160
160
  /** Required. The OIDC issuer URI. Must be a valid URI using the `https` scheme. */
161
161
  issuerUri?: string;
162
- /** Optional. OIDC JWKs in JSON String format. For details on the definition of a JWK, see https://tools.ietf.org/html/rfc7517. If not set, the `jwks_uri` from the discovery document(fetched from the .well-known path of the `issuer_uri`) will be used. Currently, RSA and EC asymmetric keys are supported. The JWK must use following format and include only the following fields: { "keys": [ { "kty": "RSA/EC", "alg": "", "use": "sig", "kid": "", "n": "", "e": "", "x": "", "y": "", "crv": "" } ] } */
162
+ /** Optional. OIDC JWKs in JSON String format. For details on the definition of a JWK, see https://tools.ietf.org/html/rfc7517. If not set, the `jwks_uri` from the discovery document that is fetched from the well-known path of the `issuer_uri`, will be used. RSA and EC asymmetric keys are supported. The JWK must use the following format and include only the following fields: { "keys": [ { "kty": "RSA/EC", "alg": "", "use": "sig", "kid": "", "n": "", "e": "", "x": "", "y": "", "crv": "" } ] } */
163
163
  jwksJson?: string;
164
164
  /** Required. Configuration for web single sign-on for the OIDC provider. Here, web sign-in refers to console sign-in and gcloud sign-in through the browser. */
165
165
  webSsoConfig?: GoogleIamAdminV1WorkforcePoolProviderOidcWebSsoConfig;
@@ -279,15 +279,15 @@ declare namespace gapi.client {
279
279
  workforcePoolProviderKeys?: WorkforcePoolProviderKey[];
280
280
  }
281
281
  interface ListWorkforcePoolProviderScimTenantsResponse {
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. */
282
+ /** Optional. Gemini Enterprise 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. Agentspace only. A list of SCIM tenants. */
284
+ /** Output only. Gemini Enterprise only. A list of SCIM tenants. */
285
285
  workforcePoolProviderScimTenants?: WorkforcePoolProviderScimTenant[];
286
286
  }
287
287
  interface ListWorkforcePoolProviderScimTokensResponse {
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. */
288
+ /** Optional. Gemini Enterprise 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. Agentspace only. A list of SCIM tokens. */
290
+ /** Output only. Gemini Enterprise only. A list of SCIM tokens. */
291
291
  workforcePoolProviderScimTokens?: WorkforcePoolProviderScimToken[];
292
292
  }
293
293
  interface ListWorkforcePoolProvidersResponse {
@@ -337,7 +337,7 @@ declare namespace gapi.client {
337
337
  allowedGrantTypes?: string[];
338
338
  /** Required. The list of redirect uris that is allowed to redirect back when authorization process is completed. */
339
339
  allowedRedirectUris?: string[];
340
- /** Required. The list of scopes that the OauthClient is allowed to request during OAuth flows. The following scopes are supported: * `https://www.googleapis.com/auth/cloud-platform`: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. * `openid`: The OAuth client can associate you with your personal information on Google Cloud. * `email`: The OAuth client can read a federated identity's email address. * `groups`: The OAuth client can read a federated identity's groups. */
340
+ /** Required. The list of scopes that the OauthClient is allowed to request during OAuth flows. The following scopes are supported: * `https://www.googleapis.com/auth/cloud-platform`: See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account. */
341
341
  allowedScopes?: string[];
342
342
  /** Output only. The system-generated OauthClient id. */
343
343
  clientId?: string;
@@ -611,7 +611,7 @@ declare namespace gapi.client {
611
611
  permissions?: string[];
612
612
  }
613
613
  interface TrustAnchor {
614
- /** PEM certificate of the PKI used for validation. Must only contain one ca certificate(either root or intermediate cert). */
614
+ /** PEM certificate of the PKI used for validation. Must only contain one ca certificate (either root or intermediate cert). */
615
615
  pemCertificate?: string;
616
616
  }
617
617
  interface TrustStore {
@@ -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 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"} ``` */
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;
@@ -682,15 +682,15 @@ declare namespace gapi.client {
682
682
  expireTime?: string;
683
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 unique Microsoft Entra ID user. */
684
684
  extendedAttributesOauth2Client?: GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client;
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. */
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. */
686
686
  extraAttributesOauth2Client?: GoogleIamAdminV1WorkforcePoolProviderExtraAttributesOAuth2Client;
687
687
  /** Identifier. The resource name of the provider. Format: `locations/{location}/workforcePools/{workforce_pool_id}/providers/{provider_id}` */
688
688
  name?: string;
689
- /** An OpenId Connect 1.0 identity provider configuration. */
689
+ /** An OpenID Connect 1.0 identity provider configuration. */
690
690
  oidc?: GoogleIamAdminV1WorkforcePoolProviderOidc;
691
691
  /** A SAML identity provider configuration. */
692
692
  saml?: GoogleIamAdminV1WorkforcePoolProviderSaml;
693
- /** Optional. Agentspace only. Specifies whether the workforce identity pool provider uses SCIM-managed groups instead of the `google.groups` attribute mapping for authorization checks. The `scim_usage` and `extended_attributes_oauth2_client` fields are mutually exclusive. A request that enables both fields on the same workforce identity pool provider will produce an error. */
693
+ /** Optional. Gemini Enterprise only. Specifies whether the workforce identity pool provider uses SCIM-managed groups instead of the `google.groups` attribute mapping for authorization checks. The `scim_usage` and `extended_attributes_oauth2_client` fields are mutually exclusive. A request that enables both fields on the same workforce identity pool provider will produce an error. */
694
694
  scimUsage?: string;
695
695
  /** Output only. The state of the provider. */
696
696
  state?: string;
@@ -708,31 +708,31 @@ declare namespace gapi.client {
708
708
  use?: string;
709
709
  }
710
710
  interface WorkforcePoolProviderScimTenant {
711
- /** 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}/ */
711
+ /** Output only. Gemini Enterprise 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}/ */
712
712
  baseUri?: string;
713
- /** Optional. Agentspace only. Maps BYOID claims to SCIM claims. */
713
+ /** Required. Immutable. Gemini Enterprise only. Maps SCIM attributes to Google attributes. This mapping is used to associate the attributes synced via SCIM with the Google Cloud attributes used in IAM policies for Workforce Identity Federation. SCIM-managed user and group attributes are mapped to `google.subject` and `google.group` respectively. Each key must be a string specifying the Google Cloud IAM attribute to map to. The supported keys are as follows: * `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.group`: Group the authenticating user belongs to. You can grant group access to resources using an IAM `principalSet` binding; access applies to all members of the group. Each value must be a [Common Expression Language] (https://opensource.google/projects/cel) expression that maps SCIM user or group attribute to the normalized attribute specified by the corresponding map key. Example: To map the SCIM user's `externalId` to `google.subject` and the SCIM group's `externalId` to `google.group`: ``` { "google.subject": "user.externalId", "google.group": "group.externalId" } ``` */
714
714
  claimMapping?: {[P in string]: string};
715
- /** Optional. Agentspace only. The description of the SCIM tenant. Cannot exceed 256 characters. */
715
+ /** Optional. Gemini Enterprise only. The description of the SCIM tenant. Cannot exceed 256 characters. */
716
716
  description?: string;
717
- /** Optional. Agentspace only. The display name of the SCIM tenant. Cannot exceed 32 characters. */
717
+ /** Optional. Gemini Enterprise only. The display name of the SCIM tenant. Cannot exceed 32 characters. */
718
718
  displayName?: string;
719
- /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
719
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
720
720
  name?: string;
721
- /** Output only. Agentspace only. The timestamp that represents the time when the SCIM tenant is purged. */
721
+ /** Output only. Gemini Enterprise only. The timestamp that represents the time when the SCIM tenant is purged. */
722
722
  purgeTime?: string;
723
723
  /** Output only. Service Agent created by SCIM Tenant API. SCIM tokens created under this tenant will be attached to this service agent. */
724
724
  serviceAgent?: string;
725
- /** Output only. Agentspace only. The state of the tenant. */
725
+ /** Output only. Gemini Enterprise only. The state of the tenant. */
726
726
  state?: string;
727
727
  }
728
728
  interface WorkforcePoolProviderScimToken {
729
- /** Optional. Agentspace only. The display name of the SCIM token. Cannot exceed 32 characters. */
729
+ /** Optional. Gemini Enterprise only. The display name of the SCIM token. Cannot exceed 32 characters. */
730
730
  displayName?: string;
731
- /** 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}` */
731
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
732
732
  name?: string;
733
- /** Output only. Agentspace only. The token string. Provide this to the IdP for authentication. Will be set only during creation. */
733
+ /** Output only. Gemini Enterprise only. The token string. Provide this to the IdP for authentication. Will be set only during creation. */
734
734
  securityToken?: string;
735
- /** Output only. Agentspace only. The state of the token. */
735
+ /** Output only. Gemini Enterprise only. The state of the token. */
736
736
  state?: string;
737
737
  }
738
738
  interface WorkloadIdentityPool {
@@ -1232,7 +1232,7 @@ declare namespace gapi.client {
1232
1232
  }): Request<Operation>;
1233
1233
  }
1234
1234
  interface TokensResource {
1235
- /** Agentspace only. Creates a new WorkforcePoolProviderScimToken in a WorkforcePoolProviderScimTenant. You cannot reuse the name of a deleted SCIM token until 30 days after deletion. */
1235
+ /** Gemini Enterprise only. Creates a new WorkforcePoolProviderScimToken in a WorkforcePoolProviderScimTenant. You cannot reuse the name of a deleted SCIM token until 30 days after deletion. */
1236
1236
  create(request: {
1237
1237
  /** V1 error format. */
1238
1238
  '$.xgafv'?: string;
@@ -1248,7 +1248,7 @@ declare namespace gapi.client {
1248
1248
  key?: string;
1249
1249
  /** OAuth 2.0 token for the current user. */
1250
1250
  oauth_token?: string;
1251
- /** Required. Agentspace only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1251
+ /** Required. Gemini Enterprise only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1252
1252
  parent: string;
1253
1253
  /** Returns response with indentations and line breaks. */
1254
1254
  prettyPrint?: boolean;
@@ -1258,7 +1258,7 @@ declare namespace gapi.client {
1258
1258
  upload_protocol?: string;
1259
1259
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1260
1260
  uploadType?: string;
1261
- /** 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]))" */
1261
+ /** Required. Gemini Enterprise 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]))" */
1262
1262
  workforcePoolProviderScimTokenId?: string;
1263
1263
  /** Request body */
1264
1264
  resource: WorkforcePoolProviderScimToken;
@@ -1279,7 +1279,7 @@ declare namespace gapi.client {
1279
1279
  key?: string;
1280
1280
  /** OAuth 2.0 token for the current user. */
1281
1281
  oauth_token?: string;
1282
- /** Required. Agentspace only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1282
+ /** Required. Gemini Enterprise only. The parent tenant to create SCIM token. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1283
1283
  parent: string;
1284
1284
  /** Returns response with indentations and line breaks. */
1285
1285
  prettyPrint?: boolean;
@@ -1289,12 +1289,12 @@ declare namespace gapi.client {
1289
1289
  upload_protocol?: string;
1290
1290
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1291
1291
  uploadType?: string;
1292
- /** 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]))" */
1292
+ /** Required. Gemini Enterprise 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]))" */
1293
1293
  workforcePoolProviderScimTokenId?: string;
1294
1294
  },
1295
1295
  body: WorkforcePoolProviderScimToken,
1296
1296
  ): Request<WorkforcePoolProviderScimToken>;
1297
- /** 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. */
1297
+ /** Gemini Enterprise 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. */
1298
1298
  delete(request?: {
1299
1299
  /** V1 error format. */
1300
1300
  '$.xgafv'?: string;
@@ -1308,7 +1308,7 @@ declare namespace gapi.client {
1308
1308
  fields?: string;
1309
1309
  /** 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. */
1310
1310
  key?: string;
1311
- /** Required. Agentspace only. The name of the SCIM token to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1311
+ /** Required. Gemini Enterprise only. The name of the SCIM token to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1312
1312
  name: string;
1313
1313
  /** OAuth 2.0 token for the current user. */
1314
1314
  oauth_token?: string;
@@ -1321,7 +1321,7 @@ declare namespace gapi.client {
1321
1321
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1322
1322
  uploadType?: string;
1323
1323
  }): Request<WorkforcePoolProviderScimToken>;
1324
- /** Agentspace only. Gets an individual WorkforcePoolProviderScimToken. */
1324
+ /** Gemini Enterprise only. Gets an individual WorkforcePoolProviderScimToken. */
1325
1325
  get(request?: {
1326
1326
  /** V1 error format. */
1327
1327
  '$.xgafv'?: string;
@@ -1335,7 +1335,7 @@ declare namespace gapi.client {
1335
1335
  fields?: string;
1336
1336
  /** 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. */
1337
1337
  key?: string;
1338
- /** Required. Agentspace only. The name of the SCIM token to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1338
+ /** Required. Gemini Enterprise only. The name of the SCIM token to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1339
1339
  name: string;
1340
1340
  /** OAuth 2.0 token for the current user. */
1341
1341
  oauth_token?: string;
@@ -1348,7 +1348,7 @@ declare namespace gapi.client {
1348
1348
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1349
1349
  uploadType?: string;
1350
1350
  }): Request<WorkforcePoolProviderScimToken>;
1351
- /** Agentspace only. Lists all non-deleted WorkforcePoolProviderScimTokenss in a WorkforcePoolProviderScimTenant. If `show_deleted` is set to `true`, then deleted SCIM tokens are also listed. */
1351
+ /** Gemini Enterprise only. Lists all non-deleted WorkforcePoolProviderScimTokenss in a WorkforcePoolProviderScimTenant. If `show_deleted` is set to `true`, then deleted SCIM tokens are also listed. */
1352
1352
  list(request?: {
1353
1353
  /** V1 error format. */
1354
1354
  '$.xgafv'?: string;
@@ -1364,24 +1364,24 @@ declare namespace gapi.client {
1364
1364
  key?: string;
1365
1365
  /** OAuth 2.0 token for the current user. */
1366
1366
  oauth_token?: string;
1367
- /** Optional. Agentspace only. The maximum number of scim tokens to return. If unspecified, at most 2 SCIM tokens will be returned. */
1367
+ /** Optional. Gemini Enterprise only. The maximum number of SCIM tokens to return. If unspecified, at most 2 SCIM tokens will be returned. */
1368
1368
  pageSize?: number;
1369
- /** Optional. Agentspace only. A page token, received from a previous `ListWorkforcePoolProviderScimTokens` call. Provide this to retrieve the subsequent page. */
1369
+ /** Optional. Gemini Enterprise only. A page token, received from a previous `ListWorkforcePoolProviderScimTokens` call. Provide this to retrieve the subsequent page. */
1370
1370
  pageToken?: string;
1371
- /** Required. Agentspace only. The parent to list SCIM tokens. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1371
+ /** Required. Gemini Enterprise only. The parent to list SCIM tokens. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}' */
1372
1372
  parent: string;
1373
1373
  /** Returns response with indentations and line breaks. */
1374
1374
  prettyPrint?: boolean;
1375
1375
  /** 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. */
1376
1376
  quotaUser?: string;
1377
- /** Optional. Agentspace only. Whether to return soft-deleted scim tokens. */
1377
+ /** Optional. Gemini Enterprise only. Whether to return soft-deleted SCIM tokens. */
1378
1378
  showDeleted?: boolean;
1379
1379
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1380
1380
  upload_protocol?: string;
1381
1381
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1382
1382
  uploadType?: string;
1383
1383
  }): Request<ListWorkforcePoolProviderScimTokensResponse>;
1384
- /** Agentspace only. Updates an existing WorkforcePoolProviderScimToken. */
1384
+ /** Gemini Enterprise only. Updates an existing WorkforcePoolProviderScimToken. */
1385
1385
  patch(request: {
1386
1386
  /** V1 error format. */
1387
1387
  '$.xgafv'?: string;
@@ -1395,7 +1395,7 @@ declare namespace gapi.client {
1395
1395
  fields?: string;
1396
1396
  /** 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. */
1397
1397
  key?: string;
1398
- /** 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}` */
1398
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1399
1399
  name: string;
1400
1400
  /** OAuth 2.0 token for the current user. */
1401
1401
  oauth_token?: string;
@@ -1403,7 +1403,7 @@ declare namespace gapi.client {
1403
1403
  prettyPrint?: boolean;
1404
1404
  /** 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. */
1405
1405
  quotaUser?: string;
1406
- /** Optional. Agentspace only. The list of fields to update. */
1406
+ /** Optional. Gemini Enterprise only. The list of fields to update. */
1407
1407
  updateMask?: string;
1408
1408
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1409
1409
  upload_protocol?: string;
@@ -1426,7 +1426,7 @@ declare namespace gapi.client {
1426
1426
  fields?: string;
1427
1427
  /** 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. */
1428
1428
  key?: string;
1429
- /** 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}` */
1429
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Token. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1430
1430
  name: string;
1431
1431
  /** OAuth 2.0 token for the current user. */
1432
1432
  oauth_token?: string;
@@ -1434,7 +1434,7 @@ declare namespace gapi.client {
1434
1434
  prettyPrint?: boolean;
1435
1435
  /** 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. */
1436
1436
  quotaUser?: string;
1437
- /** Optional. Agentspace only. The list of fields to update. */
1437
+ /** Optional. Gemini Enterprise only. The list of fields to update. */
1438
1438
  updateMask?: string;
1439
1439
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1440
1440
  upload_protocol?: string;
@@ -1443,7 +1443,7 @@ declare namespace gapi.client {
1443
1443
  },
1444
1444
  body: WorkforcePoolProviderScimToken,
1445
1445
  ): Request<WorkforcePoolProviderScimToken>;
1446
- /** Agentspace only. Undeletes a WorkforcePoolProviderScimToken,that was deleted fewer than 30 days ago. */
1446
+ /** Gemini Enterprise only. Undeletes a WorkforcePoolProviderScimToken,that was deleted fewer than 30 days ago. */
1447
1447
  undelete(request: {
1448
1448
  /** V1 error format. */
1449
1449
  '$.xgafv'?: string;
@@ -1457,7 +1457,7 @@ declare namespace gapi.client {
1457
1457
  fields?: string;
1458
1458
  /** 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. */
1459
1459
  key?: string;
1460
- /** Required. Agentspace only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1460
+ /** Required. Gemini Enterprise only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1461
1461
  name: string;
1462
1462
  /** OAuth 2.0 token for the current user. */
1463
1463
  oauth_token?: string;
@@ -1486,7 +1486,7 @@ declare namespace gapi.client {
1486
1486
  fields?: string;
1487
1487
  /** 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. */
1488
1488
  key?: string;
1489
- /** Required. Agentspace only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1489
+ /** Required. Gemini Enterprise only. The name of the SCIM token to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}/tokens/{token}` */
1490
1490
  name: string;
1491
1491
  /** OAuth 2.0 token for the current user. */
1492
1492
  oauth_token?: string;
@@ -1503,7 +1503,7 @@ declare namespace gapi.client {
1503
1503
  ): Request<WorkforcePoolProviderScimToken>;
1504
1504
  }
1505
1505
  interface ScimTenantsResource {
1506
- /** Agentspace only. Creates a new WorkforcePoolProviderScimTenant in a WorkforcePoolProvider. You cannot reuse the name of a deleted SCIM tenant until 30 days after deletion. */
1506
+ /** Gemini Enterprise only. Creates a new WorkforcePoolProviderScimTenant in a WorkforcePoolProvider. You cannot reuse the name of a deleted SCIM tenant until 30 days after deletion. */
1507
1507
  create(request: {
1508
1508
  /** V1 error format. */
1509
1509
  '$.xgafv'?: string;
@@ -1519,7 +1519,7 @@ declare namespace gapi.client {
1519
1519
  key?: string;
1520
1520
  /** OAuth 2.0 token for the current user. */
1521
1521
  oauth_token?: string;
1522
- /** Required. Agentspace only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1522
+ /** Required. Gemini Enterprise only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1523
1523
  parent: string;
1524
1524
  /** Returns response with indentations and line breaks. */
1525
1525
  prettyPrint?: boolean;
@@ -1529,7 +1529,7 @@ declare namespace gapi.client {
1529
1529
  upload_protocol?: string;
1530
1530
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1531
1531
  uploadType?: string;
1532
- /** 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-]. */
1532
+ /** Required. Gemini Enterprise 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-]. */
1533
1533
  workforcePoolProviderScimTenantId?: string;
1534
1534
  /** Request body */
1535
1535
  resource: WorkforcePoolProviderScimTenant;
@@ -1550,7 +1550,7 @@ declare namespace gapi.client {
1550
1550
  key?: string;
1551
1551
  /** OAuth 2.0 token for the current user. */
1552
1552
  oauth_token?: string;
1553
- /** Required. Agentspace only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1553
+ /** Required. Gemini Enterprise only. The parent to create SCIM tenant. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1554
1554
  parent: string;
1555
1555
  /** Returns response with indentations and line breaks. */
1556
1556
  prettyPrint?: boolean;
@@ -1560,12 +1560,12 @@ declare namespace gapi.client {
1560
1560
  upload_protocol?: string;
1561
1561
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1562
1562
  uploadType?: string;
1563
- /** 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-]. */
1563
+ /** Required. Gemini Enterprise 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-]. */
1564
1564
  workforcePoolProviderScimTenantId?: string;
1565
1565
  },
1566
1566
  body: WorkforcePoolProviderScimTenant,
1567
1567
  ): Request<WorkforcePoolProviderScimTenant>;
1568
- /** 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. */
1568
+ /** Gemini Enterprise 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. */
1569
1569
  delete(request?: {
1570
1570
  /** V1 error format. */
1571
1571
  '$.xgafv'?: string;
@@ -1581,7 +1581,7 @@ declare namespace gapi.client {
1581
1581
  hardDelete?: boolean;
1582
1582
  /** 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. */
1583
1583
  key?: string;
1584
- /** Required. Agentspace only. The name of the scim tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1584
+ /** Required. Gemini Enterprise only. The name of the SCIM tenant to delete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1585
1585
  name: string;
1586
1586
  /** OAuth 2.0 token for the current user. */
1587
1587
  oauth_token?: string;
@@ -1594,7 +1594,7 @@ declare namespace gapi.client {
1594
1594
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1595
1595
  uploadType?: string;
1596
1596
  }): Request<WorkforcePoolProviderScimTenant>;
1597
- /** Agentspace only. Gets an individual WorkforcePoolProviderScimTenant. */
1597
+ /** Gemini Enterprise only. Gets an individual WorkforcePoolProviderScimTenant. */
1598
1598
  get(request?: {
1599
1599
  /** V1 error format. */
1600
1600
  '$.xgafv'?: string;
@@ -1608,7 +1608,7 @@ declare namespace gapi.client {
1608
1608
  fields?: string;
1609
1609
  /** 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. */
1610
1610
  key?: string;
1611
- /** Required. Agentspace only. The name of the SCIM tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1611
+ /** Required. Gemini Enterprise only. The name of the SCIM tenant to retrieve. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1612
1612
  name: string;
1613
1613
  /** OAuth 2.0 token for the current user. */
1614
1614
  oauth_token?: string;
@@ -1621,7 +1621,7 @@ declare namespace gapi.client {
1621
1621
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1622
1622
  uploadType?: string;
1623
1623
  }): Request<WorkforcePoolProviderScimTenant>;
1624
- /** Agentspace only. Lists all non-deleted WorkforcePoolProviderScimTenants in a WorkforcePoolProvider. If `show_deleted` is set to `true`, then deleted SCIM tenants are also listed. */
1624
+ /** Gemini Enterprise only. Lists all non-deleted WorkforcePoolProviderScimTenants in a WorkforcePoolProvider. If `show_deleted` is set to `true`, then deleted SCIM tenants are also listed. */
1625
1625
  list(request?: {
1626
1626
  /** V1 error format. */
1627
1627
  '$.xgafv'?: string;
@@ -1637,24 +1637,24 @@ declare namespace gapi.client {
1637
1637
  key?: string;
1638
1638
  /** OAuth 2.0 token for the current user. */
1639
1639
  oauth_token?: string;
1640
- /** Optional. Agentspace only. The maximum number of SCIM tenants to return. If unspecified, at most 1 scim tenant will be returned. */
1640
+ /** Optional. Gemini Enterprise only. The maximum number of SCIM tenants to return. If unspecified, at most 50 SCIM tenants will be returned. The maximum value is 100; values above 100 are truncated to 100. */
1641
1641
  pageSize?: number;
1642
- /** Optional. Agentspace only. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1642
+ /** Optional. Gemini Enterprise only. A page token, received from a previous `ListScimTenants` call. Provide this to retrieve the subsequent page. */
1643
1643
  pageToken?: string;
1644
- /** Required. Agentspace only. The parent to list SCIM tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1644
+ /** Required. Gemini Enterprise only. The parent to list SCIM tenants. Format: 'locations/{location}/workforcePools/{workforce_pool}/providers/{provider}' */
1645
1645
  parent: string;
1646
1646
  /** Returns response with indentations and line breaks. */
1647
1647
  prettyPrint?: boolean;
1648
1648
  /** 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. */
1649
1649
  quotaUser?: string;
1650
- /** Optional. Agentspace only. Whether to return soft-deleted SCIM tenants. */
1650
+ /** Optional. Gemini Enterprise only. Whether to return soft-deleted SCIM tenants. */
1651
1651
  showDeleted?: boolean;
1652
1652
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1653
1653
  upload_protocol?: string;
1654
1654
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
1655
1655
  uploadType?: string;
1656
1656
  }): Request<ListWorkforcePoolProviderScimTenantsResponse>;
1657
- /** Agentspace only. Updates an existing WorkforcePoolProviderScimTenant. */
1657
+ /** Gemini Enterprise only. Updates an existing WorkforcePoolProviderScimTenant. */
1658
1658
  patch(request: {
1659
1659
  /** V1 error format. */
1660
1660
  '$.xgafv'?: string;
@@ -1668,7 +1668,7 @@ declare namespace gapi.client {
1668
1668
  fields?: string;
1669
1669
  /** 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. */
1670
1670
  key?: string;
1671
- /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1671
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1672
1672
  name: string;
1673
1673
  /** OAuth 2.0 token for the current user. */
1674
1674
  oauth_token?: string;
@@ -1676,7 +1676,7 @@ declare namespace gapi.client {
1676
1676
  prettyPrint?: boolean;
1677
1677
  /** 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. */
1678
1678
  quotaUser?: string;
1679
- /** Optional. Agentspace only. The list of fields to update. */
1679
+ /** Optional. Gemini Enterprise only. The list of fields to update. */
1680
1680
  updateMask?: string;
1681
1681
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1682
1682
  upload_protocol?: string;
@@ -1699,7 +1699,7 @@ declare namespace gapi.client {
1699
1699
  fields?: string;
1700
1700
  /** 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. */
1701
1701
  key?: string;
1702
- /** Identifier. Agentspace only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1702
+ /** Identifier. Gemini Enterprise only. The resource name of the SCIM Tenant. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/ {workforce_pool_provider}/scimTenants/{scim_tenant}` */
1703
1703
  name: string;
1704
1704
  /** OAuth 2.0 token for the current user. */
1705
1705
  oauth_token?: string;
@@ -1707,7 +1707,7 @@ declare namespace gapi.client {
1707
1707
  prettyPrint?: boolean;
1708
1708
  /** 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. */
1709
1709
  quotaUser?: string;
1710
- /** Optional. Agentspace only. The list of fields to update. */
1710
+ /** Optional. Gemini Enterprise only. The list of fields to update. */
1711
1711
  updateMask?: string;
1712
1712
  /** Upload protocol for media (e.g. "raw", "multipart"). */
1713
1713
  upload_protocol?: string;
@@ -1716,7 +1716,7 @@ declare namespace gapi.client {
1716
1716
  },
1717
1717
  body: WorkforcePoolProviderScimTenant,
1718
1718
  ): Request<WorkforcePoolProviderScimTenant>;
1719
- /** Agentspace only. Undeletes a WorkforcePoolProviderScimTenant, that was deleted fewer than 30 days ago. */
1719
+ /** Gemini Enterprise only. Undeletes a WorkforcePoolProviderScimTenant, that was deleted fewer than 30 days ago. */
1720
1720
  undelete(request: {
1721
1721
  /** V1 error format. */
1722
1722
  '$.xgafv'?: string;
@@ -1730,7 +1730,7 @@ declare namespace gapi.client {
1730
1730
  fields?: string;
1731
1731
  /** 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. */
1732
1732
  key?: string;
1733
- /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1733
+ /** Required. Gemini Enterprise only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1734
1734
  name: string;
1735
1735
  /** OAuth 2.0 token for the current user. */
1736
1736
  oauth_token?: string;
@@ -1759,7 +1759,7 @@ declare namespace gapi.client {
1759
1759
  fields?: string;
1760
1760
  /** 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. */
1761
1761
  key?: string;
1762
- /** Required. Agentspace only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1762
+ /** Required. Gemini Enterprise only. The name of the SCIM tenant to undelete. Format: `locations/{location}/workforcePools/{workforce_pool}/providers/{provider}/scimTenants/{scim_tenant}` */
1763
1763
  name: string;
1764
1764
  /** OAuth 2.0 token for the current user. */
1765
1765
  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.20251031",
3
+ "version": "0.1.20251204",
4
4
  "description": "TypeScript typings for Identity and Access Management (IAM) API v1",
5
5
  "repository": {
6
6
  "type": "git",