class Google::Apis::DataflowV1b3::NameAndKind

Basic metadata about a counter.

Attributes

kind[RW]

Counter aggregation kind. Corresponds to the JSON property `kind` @return [String]

name[RW]

Name of the counter. Corresponds to the JSON property `name` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataflow_v1b3/classes.rb, line 3116
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
end