Interface ZoneChangeNameAction

All Superinterfaces:
ResourceUpdateAction<ZoneUpdateAction>, ZoneUpdateAction

public interface ZoneChangeNameAction extends ZoneUpdateAction
ZoneChangeNameAction
Example to create an instance using the builder pattern

     ZoneChangeNameAction zoneChangeNameAction = ZoneChangeNameAction.builder()
             .name("{name}")
             .build()
 
  • Field Details

  • Method Details

    • getName

      @NotNull @NotNull String getName()

      New name of the Zone.

      Returns:
      name
    • setName

      void setName(String name)

      New name of the Zone.

      Parameters:
      name - value to be set
    • of

      static ZoneChangeNameAction of()
      factory method
      Returns:
      instance of ZoneChangeNameAction
    • of

      factory method to create a shallow copy ZoneChangeNameAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ZoneChangeNameAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static ZoneChangeNameActionBuilder builder()
      builder factory method for ZoneChangeNameAction
      Returns:
      builder
    • builder

      create builder for ZoneChangeNameAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withZoneChangeNameAction

      default <T> T withZoneChangeNameAction(Function<ZoneChangeNameAction,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ZoneChangeNameAction> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference