Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
- 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
The configuration that was applied to generate the result.
Instance Attribute Summary collapse
-
#aggregation ⇒ String
Output only.
-
#custom_grouping ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaCustomGrouping
Customised grouping option that allows setting the group_by fields and also the filters togather for a configured insight request.
-
#end_time ⇒ String
Output only.
-
#field_filter ⇒ String
Output only.
-
#group ⇒ String
Output only.
-
#start_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
constructor
A new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig.
2394 2395 2396 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2394 def initialize(**args) update!(**args) end |
Instance Attribute Details
#aggregation ⇒ String
Output only. Aggregation type applied.
Corresponds to the JSON property aggregation
2366 2367 2368 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2366 def aggregation @aggregation end |
#custom_grouping ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaCustomGrouping
Customised grouping option that allows setting the group_by fields and also
the filters togather for a configured insight request.
Corresponds to the JSON property customGrouping
2372 2373 2374 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2372 def custom_grouping @custom_grouping end |
#end_time ⇒ String
Output only. Ending time for the duration for which insight was pulled.
Corresponds to the JSON property endTime
2377 2378 2379 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2377 def end_time @end_time end |
#field_filter ⇒ String
Output only. Filters applied.
Corresponds to the JSON property fieldFilter
2382 2383 2384 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2382 def field_filter @field_filter end |
#group ⇒ String
Output only. Group id of the grouping applied.
Corresponds to the JSON property group
2387 2388 2389 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2387 def group @group end |
#start_time ⇒ String
Output only. Starting time for the duration for which insight was pulled.
Corresponds to the JSON property startTime
2392 2393 2394 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2392 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2399 2400 2401 2402 2403 2404 2405 2406 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2399 def update!(**args) @aggregation = args[:aggregation] if args.key?(:aggregation) @custom_grouping = args[:custom_grouping] if args.key?(:custom_grouping) @end_time = args[:end_time] if args.key?(:end_time) @field_filter = args[:field_filter] if args.key?(:field_filter) @group = args[:group] if args.key?(:group) @start_time = args[:start_time] if args.key?(:start_time) end |