final case class ConfigChange(element: String = "", oldValue: String = "", newValue: String = "", changeType: ChangeType = ..., advices: Seq[Advice] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = ...) extends GeneratedMessage with Updatable[ConfigChange] with Product with Serializable

Output generated from semantically comparing two versions of a service configuration.

Includes detailed information about a field that have changed with applicable advice about potential consequences for the change, such as backwards-incompatibility.

element

Object hierarchy path to the change, with levels separated by a '.' character. For repeated fields, an applicable unique identifier field is used for the index (usually selector, name, or id). For maps, the term 'key' is used. If the field has no unique identifier, the numeric index is used. Examples:

  • visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
  • quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
  • logging.producer_destinations[0]
oldValue

Value of the changed object in the old Service configuration, in JSON format. This field will not be populated if ChangeType == ADDED.

newValue

Value of the changed object in the new Service configuration, in JSON format. This field will not be populated if ChangeType == REMOVED.

changeType

The type for this change, either ADDED, REMOVED, or MODIFIED.

advices

Collection of advice provided for this change, useful for determining the possible impact of this change.

Annotations
@SerialVersionUID()
Linear Supertypes
Product, Equals, Updatable[ConfigChange], GeneratedMessage, Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConfigChange
  2. Product
  3. Equals
  4. Updatable
  5. GeneratedMessage
  6. Serializable
  7. Serializable
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ConfigChange(element: String = "", oldValue: String = "", newValue: String = "", changeType: ChangeType = ..., advices: Seq[Advice] = _root_.scala.Seq.empty, unknownFields: UnknownFieldSet = ...)

    element

    Object hierarchy path to the change, with levels separated by a '.' character. For repeated fields, an applicable unique identifier field is used for the index (usually selector, name, or id). For maps, the term 'key' is used. If the field has no unique identifier, the numeric index is used. Examples:

    • visibility.rules[selector=="google.LibraryService.ListBooks"].restriction
    • quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value
    • logging.producer_destinations[0]
    oldValue

    Value of the changed object in the old Service configuration, in JSON format. This field will not be populated if ChangeType == ADDED.

    newValue

    Value of the changed object in the new Service configuration, in JSON format. This field will not be populated if ChangeType == REMOVED.

    changeType

    The type for this change, either ADDED, REMOVED, or MODIFIED.

    advices

    Collection of advice provided for this change, useful for determining the possible impact of this change.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addAdvices(__vs: Advice*): ConfigChange
  5. def addAllAdvices(__vs: Iterable[Advice]): ConfigChange
  6. val advices: Seq[Advice]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. val changeType: ChangeType
  9. def clearAdvices: ConfigChange
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. def companion: ConfigChange.type
    Definition Classes
    ConfigChange → GeneratedMessage
  12. def discardUnknownFields: ConfigChange
  13. val element: String
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def getField(__field: FieldDescriptor): PValue
    Definition Classes
    ConfigChange → GeneratedMessage
  18. def getFieldByNumber(__fieldNumber: Int): Any
    Definition Classes
    ConfigChange → GeneratedMessage
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. val newValue: String
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. val oldValue: String
  25. def serializedSize: Int
    Definition Classes
    ConfigChange → GeneratedMessage
  26. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  27. final def toByteArray: Array[Byte]
    Definition Classes
    GeneratedMessage
  28. final def toByteString: ByteString
    Definition Classes
    GeneratedMessage
  29. final def toPMessage: PMessage
    Definition Classes
    GeneratedMessage
  30. def toProtoString: String
    Definition Classes
    ConfigChange → GeneratedMessage
  31. val unknownFields: UnknownFieldSet
  32. def update(ms: (Lens[ConfigChange, ConfigChange]) ⇒ Mutation[ConfigChange]*): ConfigChange
    Definition Classes
    Updatable
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  36. def withAdvices(__v: Seq[Advice]): ConfigChange
  37. def withChangeType(__v: ChangeType): ConfigChange
  38. def withElement(__v: String): ConfigChange
  39. def withNewValue(__v: String): ConfigChange
  40. def withOldValue(__v: String): ConfigChange
  41. def withUnknownFields(__v: UnknownFieldSet): ConfigChange
  42. final def writeDelimitedTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage
  43. def writeTo(_output__: CodedOutputStream): Unit
    Definition Classes
    ConfigChange → GeneratedMessage
  44. final def writeTo(output: OutputStream): Unit
    Definition Classes
    GeneratedMessage

Inherited from Product

Inherited from Equals

Inherited from Updatable[ConfigChange]

Inherited from GeneratedMessage

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped