Class TransformConfigUpdate

java.lang.Object
org.elasticsearch.client.transform.transforms.TransformConfigUpdate
All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentObject

public class TransformConfigUpdate
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
This class holds the mutable configuration items for a transform
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  TransformConfigUpdate.Builder  

    Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent

    org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params
  • Field Summary

    Fields
    Modifier and Type Field Description
    static java.lang.String NAME  

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS
  • Constructor Summary

    Constructors
    Constructor Description
    TransformConfigUpdate​(SourceConfig source, DestConfig dest, org.elasticsearch.common.unit.TimeValue frequency, SyncConfig syncConfig, java.lang.String description, SettingsConfig settings, RetentionPolicyConfig retentionPolicyConfig)  
  • Method Summary

    Modifier and Type Method Description
    static TransformConfigUpdate.Builder builder()  
    boolean equals​(java.lang.Object other)  
    static TransformConfigUpdate fromXContent​(org.elasticsearch.common.xcontent.XContentParser parser)  
    java.lang.String getDescription()  
    DestConfig getDestination()  
    org.elasticsearch.common.unit.TimeValue getFrequency()  
    SettingsConfig getSettings()  
    SourceConfig getSource()  
    SyncConfig getSyncConfig()  
    int hashCode()  
    java.lang.String toString()  
    org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject

    isFragment
  • Field Details

  • Constructor Details

  • Method Details

    • getSource

      public SourceConfig getSource()
    • getDestination

      public DestConfig getDestination()
    • getFrequency

      public org.elasticsearch.common.unit.TimeValue getFrequency()
    • getSyncConfig

      public SyncConfig getSyncConfig()
    • getDescription

      @Nullable public java.lang.String getDescription()
    • getSettings

      @Nullable public SettingsConfig getSettings()
    • toXContent

      public org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Specified by:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      java.io.IOException
    • equals

      public boolean equals​(java.lang.Object other)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • toString

      public java.lang.String toString()
      Overrides:
      toString in class java.lang.Object
    • builder

      public static TransformConfigUpdate.Builder builder()
    • fromXContent

      public static TransformConfigUpdate fromXContent​(org.elasticsearch.common.xcontent.XContentParser parser)