Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata
- 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
Insight filters, groupings and aggregations that can be applied for the insight. Examples: aggregations, groups, field filters.
Instance Attribute Summary collapse
-
#aggregations ⇒ Array<String>
Output only.
-
#category ⇒ String
Output only.
-
#display_name ⇒ String
Output only.
-
#fields ⇒ Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField>
Output only.
-
#groups ⇒ Array<String>
Output only.
-
#sub_category ⇒ String
Output only.
-
#type ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata
constructor
A new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata
Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadata.
2816 2817 2818 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2816 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregations ⇒ Array<String>
Output only. List of aggregation types available for insight.
Corresponds to the JSON property aggregations
2783 2784 2785 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2783 def aggregations @aggregations end |
#category ⇒ String
Output only. Category of the insight.
Corresponds to the JSON property category
2788 2789 2790 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2788 def category @category end |
#display_name ⇒ String
Output only. Common name of the insight.
Corresponds to the JSON property displayName
2793 2794 2795 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2793 def display_name @display_name end |
#fields ⇒ Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaInsightMetadataField>
Output only. List of fields available for insight.
Corresponds to the JSON property fields
2798 2799 2800 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2798 def fields @fields end |
#groups ⇒ Array<String>
Output only. List of groupings available for insight.
Corresponds to the JSON property groups
2803 2804 2805 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2803 def groups @groups end |
#sub_category ⇒ String
Output only. Sub-Category of the insight.
Corresponds to the JSON property subCategory
2808 2809 2810 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2808 def sub_category @sub_category end |
#type ⇒ String
Output only. Type of the insight. It is metadata describing whether the
insight is a metric (e.g. count) or a report (e.g. list, status).
Corresponds to the JSON property type
2814 2815 2816 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2814 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2821 2822 2823 2824 2825 2826 2827 2828 2829 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2821 def update!(**args) @aggregations = args[:aggregations] if args.key?(:aggregations) @category = args[:category] if args.key?(:category) @display_name = args[:display_name] if args.key?(:display_name) @fields = args[:fields] if args.key?(:fields) @groups = args[:groups] if args.key?(:groups) @sub_category = args[:sub_category] if args.key?(:sub_category) @type = args[:type] if args.key?(:type) end |