Class SyslogLoggingDestinationParameters
- java.lang.Object
-
- io.fabric8.openshift.api.model.operator.v1.SyslogLoggingDestinationParameters
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<SyslogLoggingDestinationParametersBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class SyslogLoggingDestinationParameters extends Object implements io.fabric8.kubernetes.api.builder.Editable<SyslogLoggingDestinationParametersBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
SyslogLoggingDestinationParameters describes parameters for the Syslog logging destination type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SyslogLoggingDestinationParameters()No args constructor for use in serializationSyslogLoggingDestinationParameters(String address, String facility, Long maxLength, Long port)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SyslogLoggingDestinationParametersBuilderedit()Map<String,Object>getAdditionalProperties()StringgetAddress()address is the IP address of the syslog endpoint that receives log messages.StringgetFacility()facility specifies the syslog facility of log messages.LonggetMaxLength()maxLength is the maximum length of the log message.LonggetPort()port is the UDP port number of the syslog endpoint that receives log messages.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetAddress(String address)address is the IP address of the syslog endpoint that receives log messages.voidsetFacility(String facility)facility specifies the syslog facility of log messages.voidsetMaxLength(Long maxLength)maxLength is the maximum length of the log message.voidsetPort(Long port)port is the UDP port number of the syslog endpoint that receives log messages.SyslogLoggingDestinationParametersBuildertoBuilder()
-
-
-
Method Detail
-
getAddress
public String getAddress()
address is the IP address of the syslog endpoint that receives log messages.
-
setAddress
public void setAddress(String address)
address is the IP address of the syslog endpoint that receives log messages.
-
getFacility
public String getFacility()
facility specifies the syslog facility of log messages.If this field is empty, the facility is "local1".
-
setFacility
public void setFacility(String facility)
facility specifies the syslog facility of log messages.If this field is empty, the facility is "local1".
-
getMaxLength
public Long getMaxLength()
maxLength is the maximum length of the log message.Valid values are integers in the range 480 to 4096, inclusive.
When omitted, the default value is 1024.
-
setMaxLength
public void setMaxLength(Long maxLength)
maxLength is the maximum length of the log message.Valid values are integers in the range 480 to 4096, inclusive.
When omitted, the default value is 1024.
-
getPort
public Long getPort()
port is the UDP port number of the syslog endpoint that receives log messages.
-
setPort
public void setPort(Long port)
port is the UDP port number of the syslog endpoint that receives log messages.
-
edit
public SyslogLoggingDestinationParametersBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<SyslogLoggingDestinationParametersBuilder>
-
toBuilder
public SyslogLoggingDestinationParametersBuilder toBuilder()
-
-