Interface ZoneResourceIdentifier

All Superinterfaces:
Identifiable<Zone>, ResourceIdentifier, WithKey

public interface ZoneResourceIdentifier extends ResourceIdentifier, Identifiable<Zone>

ResourceIdentifier to a Zone. Either id or key is required. If both are set, an InvalidJsonInput error is returned.


Example to create an instance using the builder pattern

     ZoneResourceIdentifier zoneResourceIdentifier = ZoneResourceIdentifier.builder()
             .build()
 
  • Field Details

  • Method Details

    • getId

      String getId()

      Unique identifier of the referenced Zone. Required if key is absent.

      Specified by:
      getId in interface Identifiable<Zone>
      Specified by:
      getId in interface ResourceIdentifier
      Returns:
      id
    • getKey

      String getKey()

      User-defined unique identifier of the referenced Zone. Required if id is absent.

      Specified by:
      getKey in interface ResourceIdentifier
      Specified by:
      getKey in interface WithKey
      Returns:
      key
    • setId

      void setId(String id)

      Unique identifier of the referenced Zone. Required if key is absent.

      Specified by:
      setId in interface ResourceIdentifier
      Parameters:
      id - value to be set
    • setKey

      void setKey(String key)

      User-defined unique identifier of the referenced Zone. Required if id is absent.

      Specified by:
      setKey in interface ResourceIdentifier
      Parameters:
      key - value to be set
    • of

      factory method
      Returns:
      instance of ZoneResourceIdentifier
    • of

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

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

      builder factory method for ZoneResourceIdentifier
      Returns:
      builder
    • builder

      create builder for ZoneResourceIdentifier instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withZoneResourceIdentifier

      default <T> T withZoneResourceIdentifier(Function<ZoneResourceIdentifier,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<ZoneResourceIdentifier> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference