@maxim_mazurok/gapi.client.gkehub-v1 0.0.20240225 → 0.0.20240229
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 +25 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://gkehub.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240229
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -608,6 +608,8 @@ declare namespace gapi.client {
|
|
|
608
608
|
oidcConfig?: IdentityServiceOidcConfig;
|
|
609
609
|
/** Proxy server address to use for auth method. */
|
|
610
610
|
proxy?: string;
|
|
611
|
+
/** SAML specific configuration. */
|
|
612
|
+
samlConfig?: IdentityServiceSamlConfig;
|
|
611
613
|
}
|
|
612
614
|
interface IdentityServiceAzureADConfig {
|
|
613
615
|
/** ID for the registered client application that makes authentication requests to the Azure AD identity provider. */
|
|
@@ -616,10 +618,14 @@ declare namespace gapi.client {
|
|
|
616
618
|
clientSecret?: string;
|
|
617
619
|
/** Output only. Encrypted AzureAD client secret. */
|
|
618
620
|
encryptedClientSecret?: string;
|
|
621
|
+
/** Optional. Format of the AzureAD groups that the client wants for auth. */
|
|
622
|
+
groupFormat?: string;
|
|
619
623
|
/** The redirect URL that kubectl uses for authorization. */
|
|
620
624
|
kubectlRedirectUri?: string;
|
|
621
625
|
/** Kind of Azure AD account to be authenticated. Supported values are or for accounts belonging to a specific tenant. */
|
|
622
626
|
tenant?: string;
|
|
627
|
+
/** Optional. Claim in the AzureAD ID Token that holds the user details. */
|
|
628
|
+
userClaim?: string;
|
|
623
629
|
}
|
|
624
630
|
interface IdentityServiceGoogleConfig {
|
|
625
631
|
/** Disable automatic configuration of Google Plugin on supported platforms. */
|
|
@@ -669,6 +675,24 @@ declare namespace gapi.client {
|
|
|
669
675
|
/** Prefix to prepend to user name. */
|
|
670
676
|
userPrefix?: string;
|
|
671
677
|
}
|
|
678
|
+
interface IdentityServiceSamlConfig {
|
|
679
|
+
/** Optional. The mapping of additional user attributes like nickname, birthday and address etc.. `key` is the name of this additional attribute. `value` is a string presenting as CEL(common expression language, go/cel) used for getting the value from the resources. Take nickname as an example, in this case, `key` is "attribute.nickname" and `value` is "assertion.nickname". */
|
|
680
|
+
attributeMapping?: {[P in string]: string};
|
|
681
|
+
/** Optional. Prefix to prepend to group name. */
|
|
682
|
+
groupPrefix?: string;
|
|
683
|
+
/** Optional. The SAML attribute to read groups from. This value is expected to be a string and will be passed along as-is (with the option of being prefixed by the `group_prefix`). */
|
|
684
|
+
groupsAttribute?: string;
|
|
685
|
+
/** Required. The list of IdP certificates to validate the SAML response against. */
|
|
686
|
+
identityProviderCertificates?: string[];
|
|
687
|
+
/** Required. The entity ID of the SAML IdP. */
|
|
688
|
+
identityProviderId?: string;
|
|
689
|
+
/** Required. The URI where the SAML IdP exposes the SSO service. */
|
|
690
|
+
identityProviderSsoUri?: string;
|
|
691
|
+
/** Optional. The SAML attribute to read username from. If unspecified, the username will be read from the NameID element of the assertion in SAML response. This value is expected to be a string and will be passed along as-is (with the option of being prefixed by the `user_prefix`). */
|
|
692
|
+
userAttribute?: string;
|
|
693
|
+
/** Optional. Prefix to prepend to user name. */
|
|
694
|
+
userPrefix?: string;
|
|
695
|
+
}
|
|
672
696
|
interface KubernetesMetadata {
|
|
673
697
|
/** Output only. Kubernetes API server version string as reported by `/version`. */
|
|
674
698
|
kubernetesApiServerVersion?: string;
|