Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField
- 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
Field metadata. Commonly understandable name and description for the field. Multiple such fields constitute the Insight.
Instance Attribute Summary collapse
-
#description ⇒ String
Output only.
-
#display_name ⇒ String
Output only.
-
#filter_alias ⇒ String
Output only.
-
#filterable ⇒ Boolean
(also: #filterable?)
Output only.
-
#groupable ⇒ Boolean
(also: #groupable?)
Output only.
-
#id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField
constructor
A new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField
Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField.
2721 2722 2723 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2721 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. Description of the field.
Corresponds to the JSON property description
2690 2691 2692 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2690 def description @description end |
#display_name ⇒ String
Output only. Name of the field.
Corresponds to the JSON property displayName
2695 2696 2697 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2695 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
2701 2702 2703 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2701 def filter_alias @filter_alias end |
#filterable ⇒ Boolean Also known as: filterable?
Output only. Indicates whether the field can be used for filtering.
Corresponds to the JSON property filterable
2706 2707 2708 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2706 def filterable @filterable end |
#groupable ⇒ Boolean Also known as: groupable?
Output only. Indicates whether the field can be used for grouping in custom
grouping request.
Corresponds to the JSON property groupable
2713 2714 2715 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2713 def groupable @groupable end |
#id ⇒ String
Output only. Field id for which this is the metadata.
Corresponds to the JSON property id
2719 2720 2721 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2719 def id @id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2726 2727 2728 2729 2730 2731 2732 2733 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2726 def update!(**args) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @filter_alias = args[:filter_alias] if args.key?(:filter_alias) @filterable = args[:filterable] if args.key?(:filterable) @groupable = args[:groupable] if args.key?(:groupable) @id = args[:id] if args.key?(:id) end |