We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 332be8e commit 5f0d399Copy full SHA for 5f0d399
src/main/java/net/snowflake/client/core/auth/wif/WorkloadIdentityProviderType.java
@@ -1,8 +1,8 @@
1
package net.snowflake.client.core.auth.wif;
2
3
enum WorkloadIdentityProviderType {
4
- AWS,
5
- AZURE,
6
- GCP,
7
- OIDC
+ AWS, // Provider that builds an encoded pre-signed GetCallerIdentity request using the current workload's IAM role.
+ AZURE, // Provider that requests an OAuth access token for the workload's managed identity.
+ GCP, // Provider that requests an ID token for the workload's attached service account.
+ OIDC // Provider that looks for an OIDC ID token.
8
}
0 commit comments