OraclePartitionSettings.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.analytics.synapse.artifacts.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The settings that will be leveraged for Oracle source partitioning. */
@Fluent
public final class OraclePartitionSettings {
/*
* Names of the physical partitions of Oracle table.
*/
@JsonProperty(value = "partitionNames")
private Object partitionNames;
/*
* The name of the column in integer type that will be used for proceeding
* range partitioning. Type: string (or Expression with resultType string).
*/
@JsonProperty(value = "partitionColumnName")
private Object partitionColumnName;
/*
* The maximum value of column specified in partitionColumnName that will
* be used for proceeding range partitioning. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "partitionUpperBound")
private Object partitionUpperBound;
/*
* The minimum value of column specified in partitionColumnName that will
* be used for proceeding range partitioning. Type: string (or Expression
* with resultType string).
*/
@JsonProperty(value = "partitionLowerBound")
private Object partitionLowerBound;
/**
* Get the partitionNames property: Names of the physical partitions of Oracle table.
*
* @return the partitionNames value.
*/
public Object getPartitionNames() {
return this.partitionNames;
}
/**
* Set the partitionNames property: Names of the physical partitions of Oracle table.
*
* @param partitionNames the partitionNames value to set.
* @return the OraclePartitionSettings object itself.
*/
public OraclePartitionSettings setPartitionNames(Object partitionNames) {
this.partitionNames = partitionNames;
return this;
}
/**
* Get the partitionColumnName property: The name of the column in integer type that will be used for proceeding
* range partitioning. Type: string (or Expression with resultType string).
*
* @return the partitionColumnName value.
*/
public Object getPartitionColumnName() {
return this.partitionColumnName;
}
/**
* Set the partitionColumnName property: The name of the column in integer type that will be used for proceeding
* range partitioning. Type: string (or Expression with resultType string).
*
* @param partitionColumnName the partitionColumnName value to set.
* @return the OraclePartitionSettings object itself.
*/
public OraclePartitionSettings setPartitionColumnName(Object partitionColumnName) {
this.partitionColumnName = partitionColumnName;
return this;
}
/**
* Get the partitionUpperBound property: The maximum value of column specified in partitionColumnName that will be
* used for proceeding range partitioning. Type: string (or Expression with resultType string).
*
* @return the partitionUpperBound value.
*/
public Object getPartitionUpperBound() {
return this.partitionUpperBound;
}
/**
* Set the partitionUpperBound property: The maximum value of column specified in partitionColumnName that will be
* used for proceeding range partitioning. Type: string (or Expression with resultType string).
*
* @param partitionUpperBound the partitionUpperBound value to set.
* @return the OraclePartitionSettings object itself.
*/
public OraclePartitionSettings setPartitionUpperBound(Object partitionUpperBound) {
this.partitionUpperBound = partitionUpperBound;
return this;
}
/**
* Get the partitionLowerBound property: The minimum value of column specified in partitionColumnName that will be
* used for proceeding range partitioning. Type: string (or Expression with resultType string).
*
* @return the partitionLowerBound value.
*/
public Object getPartitionLowerBound() {
return this.partitionLowerBound;
}
/**
* Set the partitionLowerBound property: The minimum value of column specified in partitionColumnName that will be
* used for proceeding range partitioning. Type: string (or Expression with resultType string).
*
* @param partitionLowerBound the partitionLowerBound value to set.
* @return the OraclePartitionSettings object itself.
*/
public OraclePartitionSettings setPartitionLowerBound(Object partitionLowerBound) {
this.partitionLowerBound = partitionLowerBound;
return this;
}
}