Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal
- 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
-
#display_name ⇒ String
Output only.
-
#filter_alias ⇒ String
Output only.
-
#id ⇒ String
Output only.
-
#value ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal
constructor
A new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal
Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRowFieldVal.
2636 2637 2638 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2636 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Output only. Name of the field.
Corresponds to the JSON property displayName
2617 2618 2619 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2617 def display_name @display_name end |
#filter_alias ⇒ String
Output only. Field name to be used in filter while requesting configured
insight filtered on this field.
Corresponds to the JSON property filterAlias
2623 2624 2625 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2623 def filter_alias @filter_alias end |
#id ⇒ String
Output only. Field id.
Corresponds to the JSON property id
2628 2629 2630 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2628 def id @id end |
#value ⇒ String
Output only. Value of the field in string format. Acceptable values are
strings or numbers.
Corresponds to the JSON property value
2634 2635 2636 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2634 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2641 2642 2643 2644 2645 2646 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2641 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 |