update enum to include azure

Signed-off-by: goenning <me@goenning.net>
This commit is contained in:
goenning
2022-05-05 10:34:21 +01:00
parent 0a336bf640
commit 403e5de263
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -52,7 +52,7 @@ export interface Config {
/** @visibility secret */
serviceAccountToken?: string;
/** @visibility frontend */
authProvider: 'aws' | 'google' | 'serviceAccount';
authProvider: 'aws' | 'google' | 'serviceAccount' | 'azure';
/** @visibility frontend */
skipTLSVerify?: boolean;
}>;
+1 -1
View File
@@ -18,7 +18,7 @@ import { V1Service } from '@kubernetes/client-node';
// Warning: (ae-missing-release-tag) "AuthProviderType" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
// @public (undocumented)
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws';
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws' | 'azure';
// Warning: (ae-missing-release-tag) "ClientContainerStatus" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
//
+1 -1
View File
@@ -84,7 +84,7 @@ export interface ObjectsByEntityResponse {
items: ClusterObjects[];
}
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws';
export type AuthProviderType = 'google' | 'serviceAccount' | 'aws' | 'azure';
export type FetchResponse =
| PodFetchResponse