Class: Google::Apis::DataprocV1::ValueInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

Annotatated property value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ValueInfo

Returns a new instance of ValueInfo.



11868
11869
11870
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11868

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#annotationString

Annotation, comment or explanation why the property was set. Corresponds to the JSON property annotation

Returns:

  • (String)


11856
11857
11858
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11856

def annotation
  @annotation
end

#overridden_valueString

Optional. Value which was replaced by the corresponding component. Corresponds to the JSON property overriddenValue

Returns:

  • (String)


11861
11862
11863
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11861

def overridden_value
  @overridden_value
end

#valueString

Property value. Corresponds to the JSON property value

Returns:

  • (String)


11866
11867
11868
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11866

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11873
11874
11875
11876
11877
# File 'lib/google/apis/dataproc_v1/classes.rb', line 11873

def update!(**args)
  @annotation = args[:annotation] if args.key?(:annotation)
  @overridden_value = args[:overridden_value] if args.key?(:overridden_value)
  @value = args[:value] if args.key?(:value)
end