class Google::Apis::RuntimeconfigV1beta1::WatchVariableRequest

Request for the `WatchVariable()` method.

Attributes

newer_than[RW]

If specified, checks the current timestamp of the variable and if the current timestamp is newer than `newerThan` timestamp, the method returns immediately. If not specified or the variable has an older timestamp, the watcher waits for a the value to change before returning. Corresponds to the JSON property `newerThan` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/runtimeconfig_v1beta1/classes.rb, line 781
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/runtimeconfig_v1beta1/classes.rb, line 786
def update!(**args)
  @newer_than = args[:newer_than] if args.key?(:newer_than)
end