@maxim_mazurok/gapi.client.iam-v1 0.0.20250320 → 0.0.20250418
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +8 -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:
|
|
12
|
+
// Revision: 20250418
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -357,7 +357,7 @@ declare namespace gapi.client {
|
|
|
357
357
|
interface Oidc {
|
|
358
358
|
/** Optional. Acceptable values for the `aud` field (audience) in the OIDC token. Token exchange requests are rejected if the token audience does not match one of the configured values. Each audience may be at most 256 characters. A maximum of 10 audiences may be configured. If this list is empty, the OIDC token audience must be equal to the full canonical resource name of the WorkloadIdentityPoolProvider, with or without the HTTPS prefix. For example: ``` //iam.googleapis.com/projects//locations//workloadIdentityPools//providers/ https://iam.googleapis.com/projects//locations//workloadIdentityPools//providers/ ``` */
|
|
359
359
|
allowedAudiences?: string[];
|
|
360
|
-
/** Required. The OIDC issuer URL. Must be an HTTPS endpoint. */
|
|
360
|
+
/** Required. The OIDC issuer URL. Must be an HTTPS endpoint. Used per OpenID Connect Discovery 1.0 spec to locate the provider's public keys (via `jwks_uri`) for verifying tokens like the OIDC ID token. These public key types must be 'EC' or 'RSA'. */
|
|
361
361
|
issuerUri?: string;
|
|
362
362
|
/** 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": "" } ] } */
|
|
363
363
|
jwksJson?: string;
|
|
@@ -757,6 +757,8 @@ declare namespace gapi.client {
|
|
|
757
757
|
saml?: Saml;
|
|
758
758
|
/** Output only. The state of the provider. */
|
|
759
759
|
state?: string;
|
|
760
|
+
/** An X.509-type identity provider. */
|
|
761
|
+
x509?: X509;
|
|
760
762
|
}
|
|
761
763
|
interface WorkloadIdentityPoolProviderKey {
|
|
762
764
|
/** Output only. Time after which the key will be permanently purged and cannot be recovered. Note that the key may get purged before this timestamp if the total limit of keys per provider is crossed. */
|
|
@@ -770,6 +772,10 @@ declare namespace gapi.client {
|
|
|
770
772
|
/** Required. The purpose of the key. */
|
|
771
773
|
use?: string;
|
|
772
774
|
}
|
|
775
|
+
interface X509 {
|
|
776
|
+
/** Required. A Trust store, use this trust store as a wrapper to config the trust anchor and optional intermediate cas to help build the trust chain for the incoming end entity certificate. Follow the x509 guidelines to define those PEM encoded certs. Only 1 trust store is currently supported. */
|
|
777
|
+
trustStore?: TrustStore;
|
|
778
|
+
}
|
|
773
779
|
interface IamPoliciesResource {
|
|
774
780
|
/** Lints, or validates, an IAM policy. Currently checks the google.iam.v1.Binding.condition field, which contains a condition expression for a role binding. Successful calls to this method always return an HTTP `200 OK` status code, even if the linter detects an issue in the IAM policy. */
|
|
775
781
|
lintPolicy(request: {
|