@maxim_mazurok/gapi.client.gkehub-v1alpha 0.0.20240225 → 0.0.20240307
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=v1alpha
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240307
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -688,6 +688,8 @@ declare namespace gapi.client {
|
|
|
688
688
|
oidcConfig?: IdentityServiceOidcConfig;
|
|
689
689
|
/** Proxy server address to use for auth method. */
|
|
690
690
|
proxy?: string;
|
|
691
|
+
/** SAML specific configuration. */
|
|
692
|
+
samlConfig?: IdentityServiceSamlConfig;
|
|
691
693
|
}
|
|
692
694
|
interface IdentityServiceAzureADConfig {
|
|
693
695
|
/** ID for the registered client application that makes authentication requests to the Azure AD identity provider. */
|
|
@@ -696,10 +698,14 @@ declare namespace gapi.client {
|
|
|
696
698
|
clientSecret?: string;
|
|
697
699
|
/** Output only. Encrypted AzureAD client secret. */
|
|
698
700
|
encryptedClientSecret?: string;
|
|
701
|
+
/** Optional. Format of the AzureAD groups that the client wants for auth. */
|
|
702
|
+
groupFormat?: string;
|
|
699
703
|
/** The redirect URL that kubectl uses for authorization. */
|
|
700
704
|
kubectlRedirectUri?: string;
|
|
701
705
|
/** Kind of Azure AD account to be authenticated. Supported values are or for accounts belonging to a specific tenant. */
|
|
702
706
|
tenant?: string;
|
|
707
|
+
/** Optional. Claim in the AzureAD ID Token that holds the user details. */
|
|
708
|
+
userClaim?: string;
|
|
703
709
|
}
|
|
704
710
|
interface IdentityServiceGoogleConfig {
|
|
705
711
|
/** Disable automatic configuration of Google Plugin on supported platforms. */
|
|
@@ -749,6 +755,24 @@ declare namespace gapi.client {
|
|
|
749
755
|
/** Prefix to prepend to user name. */
|
|
750
756
|
userPrefix?: string;
|
|
751
757
|
}
|
|
758
|
+
interface IdentityServiceSamlConfig {
|
|
759
|
+
/** 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". */
|
|
760
|
+
attributeMapping?: {[P in string]: string};
|
|
761
|
+
/** Optional. Prefix to prepend to group name. */
|
|
762
|
+
groupPrefix?: string;
|
|
763
|
+
/** 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`). */
|
|
764
|
+
groupsAttribute?: string;
|
|
765
|
+
/** Required. The list of IdP certificates to validate the SAML response against. */
|
|
766
|
+
identityProviderCertificates?: string[];
|
|
767
|
+
/** Required. The entity ID of the SAML IdP. */
|
|
768
|
+
identityProviderId?: string;
|
|
769
|
+
/** Required. The URI where the SAML IdP exposes the SSO service. */
|
|
770
|
+
identityProviderSsoUri?: string;
|
|
771
|
+
/** 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`). */
|
|
772
|
+
userAttribute?: string;
|
|
773
|
+
/** Optional. Prefix to prepend to user name. */
|
|
774
|
+
userPrefix?: string;
|
|
775
|
+
}
|
|
752
776
|
interface KubernetesMetadata {
|
|
753
777
|
/** Output only. Kubernetes API server version string as reported by `/version`. */
|
|
754
778
|
kubernetesApiServerVersion?: string;
|