Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal

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

Overview

Column or key value pair from the request as part of key to use in query or a single pair of the fetch response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal

Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal.



2789
2790
2791
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2789

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

Instance Attribute Details

#display_nameString

Output only. Name of the field. Corresponds to the JSON property displayName

Returns:

  • (String)


2770
2771
2772
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2770

def display_name
  @display_name
end

#filter_aliasString

Output only. Field name to be used in filter while requesting configured insight filtered on this field. Corresponds to the JSON property filterAlias

Returns:

  • (String)


2776
2777
2778
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2776

def filter_alias
  @filter_alias
end

#idString

Output only. Field id. Corresponds to the JSON property id

Returns:

  • (String)


2781
2782
2783
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2781

def id
  @id
end

#valueString

Output only. Value of the field in string format. Acceptable values are strings or numbers. Corresponds to the JSON property value

Returns:

  • (String)


2787
2788
2789
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2787

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2794
2795
2796
2797
2798
2799
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2794

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @filter_alias = args[:filter_alias] if args.key?(:filter_alias)
  @id = args[:id] if args.key?(:id)
  @value = args[:value] if args.key?(:value)
end