Package org.apache.iceberg.dell
Class DellProperties
- java.lang.Object
-
- org.apache.iceberg.dell.DellProperties
-
- All Implemented Interfaces:
java.io.Serializable
public class DellProperties extends java.lang.Object implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CLIENT_FACTORY
The implementation class ofDellClientFactory
to customize Dell client configurations.static java.lang.String
ECS_S3_ACCESS_KEY_ID
S3 Access key id of Dell EMC ECSstatic java.lang.String
ECS_S3_ENDPOINT
S3 endpoint of Dell EMC ECSstatic java.lang.String
ECS_S3_SECRET_ACCESS_KEY
S3 Secret access key of Dell EMC ECS
-
Constructor Summary
Constructors Constructor Description DellProperties()
DellProperties(java.util.Map<java.lang.String,java.lang.String> properties)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
ecsS3AccessKeyId()
java.lang.String
ecsS3Endpoint()
java.lang.String
ecsS3SecretAccessKey()
void
setEcsS3AccessKeyId(java.lang.String ecsS3AccessKeyId)
void
setEcsS3Endpoint(java.lang.String ecsS3Endpoint)
void
setEcsS3SecretAccessKey(java.lang.String ecsS3SecretAccessKey)
-
-
-
Field Detail
-
ECS_S3_ACCESS_KEY_ID
public static final java.lang.String ECS_S3_ACCESS_KEY_ID
S3 Access key id of Dell EMC ECS- See Also:
- Constant Field Values
-
ECS_S3_SECRET_ACCESS_KEY
public static final java.lang.String ECS_S3_SECRET_ACCESS_KEY
S3 Secret access key of Dell EMC ECS- See Also:
- Constant Field Values
-
ECS_S3_ENDPOINT
public static final java.lang.String ECS_S3_ENDPOINT
S3 endpoint of Dell EMC ECS- See Also:
- Constant Field Values
-
CLIENT_FACTORY
public static final java.lang.String CLIENT_FACTORY
The implementation class ofDellClientFactory
to customize Dell client configurations. If set, all Dell clients will be initialized by the specified factory. If not set,DellClientFactories.DefaultDellClientFactory
is used as default factory.- See Also:
- Constant Field Values
-
-
Method Detail
-
ecsS3Endpoint
public java.lang.String ecsS3Endpoint()
-
setEcsS3Endpoint
public void setEcsS3Endpoint(java.lang.String ecsS3Endpoint)
-
ecsS3AccessKeyId
public java.lang.String ecsS3AccessKeyId()
-
setEcsS3AccessKeyId
public void setEcsS3AccessKeyId(java.lang.String ecsS3AccessKeyId)
-
ecsS3SecretAccessKey
public java.lang.String ecsS3SecretAccessKey()
-
setEcsS3SecretAccessKey
public void setEcsS3SecretAccessKey(java.lang.String ecsS3SecretAccessKey)
-
-