Package com.cloudera.cdp.dw.model
Class VwSummarySupportedAuthMethods
- java.lang.Object
-
- com.cloudera.cdp.dw.model.VwSummarySupportedAuthMethods
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:17.249-07:00") public class VwSummarySupportedAuthMethods extends Object
Describes which authentication methods are supported on this Virtual Warehouse.
-
-
Constructor Summary
Constructors Constructor Description VwSummarySupportedAuthMethods()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
Boolean
getJwt()
Getter for jwt.Boolean
getLdap()
Getter for ldap.Boolean
getSso()
Getter for sso.int
hashCode()
void
setJwt(Boolean jwt)
Setter for jwt.void
setLdap(Boolean ldap)
Setter for ldap.void
setSso(Boolean sso)
Setter for sso.String
toString()
-
-
-
Method Detail
-
getLdap
public Boolean getLdap()
Getter for ldap. Indicates if username/password access to this Virtual Warehouse is supported.
-
setLdap
public void setLdap(Boolean ldap)
Setter for ldap. Indicates if username/password access to this Virtual Warehouse is supported.
-
getJwt
public Boolean getJwt()
Getter for jwt. Indicates if JWT auth is supported on this Virtual Warehouse.
-
setJwt
public void setJwt(Boolean jwt)
Setter for jwt. Indicates if JWT auth is supported on this Virtual Warehouse.
-
getSso
public Boolean getSso()
Getter for sso. Indicates if SSO auth is supported on this Virtual Warehouse.
-
setSso
public void setSso(Boolean sso)
Setter for sso. Indicates if SSO auth is supported on this Virtual Warehouse.
-
-