Package com.snowflake.snowpark_java
Class PutResult
- java.lang.Object
-
- com.snowflake.snowpark_java.PutResult
-
public class PutResult extends Object
Represents the results of uploading a local file to a stage location.- Since:
- 1.2.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getEncryption()
Retrieves the encryption statusString
getMessage()
Retrieves the messageString
getSourceCompression()
Retrieves the source file compression statusString
getSourceFileName()
Retrieves the source file namelong
getSourceSizeBytes()
Retrieves the source file size in bytesString
getStatus()
Retrieves the statusString
getTargetCompression()
Retrieves the target file compression statusString
getTargetFileName()
Retrieves the target file namelong
getTargetSizeBytes()
Retrieves the target file size in bytes
-
-
-
Method Detail
-
getSourceFileName
public String getSourceFileName()
Retrieves the source file name- Returns:
- A String
- Since:
- 1.2.0
-
getTargetFileName
public String getTargetFileName()
Retrieves the target file name- Returns:
- A String
- Since:
- 1.2.0
-
getSourceSizeBytes
public long getSourceSizeBytes()
Retrieves the source file size in bytes- Returns:
- A long number
- Since:
- 1.2.0
-
getTargetSizeBytes
public long getTargetSizeBytes()
Retrieves the target file size in bytes- Returns:
- A long number
- Since:
- 1.2.0
-
getSourceCompression
public String getSourceCompression()
Retrieves the source file compression status- Returns:
- A String
- Since:
- 1.2.0
-
getTargetCompression
public String getTargetCompression()
Retrieves the target file compression status- Returns:
- A String
- Since:
- 1.2.0
-
getStatus
public String getStatus()
Retrieves the status- Returns:
- A String
- Since:
- 1.2.0
-
getEncryption
public String getEncryption()
Retrieves the encryption status- Returns:
- A String
- Since:
- 1.2.0
-
getMessage
public String getMessage()
Retrieves the message- Returns:
- A String
- Since:
- 1.2.0
-
-