Class ProcedureProperties
- java.lang.Object
-
- com.snowflake.connectors.common.procedure.ProcedureProperties
-
public class ProcedureProperties extends Object
Object representing properties of a stored procedure.
-
-
Constructor Summary
Constructors Constructor Description ProcedureProperties(com.snowflake.connectors.common.object.ObjectName procedureName, String externalAccessIntegrations, String secrets)
Creates a newProcedureProperties
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getExternalAccessIntegrations()
Returns the EAIs assigned to the procedure.com.snowflake.connectors.common.object.ObjectName
getProcedureName()
Returns the procedure name.String
getSecrets()
Returns the secrets assigned to the procedure.
-
-
-
Constructor Detail
-
ProcedureProperties
public ProcedureProperties(com.snowflake.connectors.common.object.ObjectName procedureName, String externalAccessIntegrations, String secrets)
Creates a newProcedureProperties
.- Parameters:
procedureName
- name of the stored procedure objectexternalAccessIntegrations
- EAIs assigned to the proceduresecrets
- secrets assigned to the procedure
-
-
Method Detail
-
getProcedureName
public com.snowflake.connectors.common.object.ObjectName getProcedureName()
Returns the procedure name.- Returns:
- procedure name
-
getExternalAccessIntegrations
public String getExternalAccessIntegrations()
Returns the EAIs assigned to the procedure.- Returns:
- EAIs assigned to the procedure
-
getSecrets
public String getSecrets()
Returns the secrets assigned to the procedure.- Returns:
- secrets assigned to the procedure
-
-