Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse
- Inherits:
-
Object
- Object
- Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse
- 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 response for the configured insight.
Instance Attribute Summary collapse
-
#applied_config ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
The configuration that was applied to generate the result.
-
#next_page_token ⇒ String
Output only.
-
#rows ⇒ Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRow>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse
constructor
A new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse
Returns a new instance of GoogleCloudBeyondcorpSaasplatformInsightsV1alphaConfiguredInsightResponse.
2430 2431 2432 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2430 def initialize(**args) update!(**args) end |
Instance Attribute Details
#applied_config ⇒ Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaAppliedConfig
The configuration that was applied to generate the result.
Corresponds to the JSON property appliedConfig
2416 2417 2418 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2416 def applied_config @applied_config end |
#next_page_token ⇒ String
Output only. Next page token to be fetched. Set to empty or NULL if there are
no more pages available.
Corresponds to the JSON property nextPageToken
2422 2423 2424 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2422 def next_page_token @next_page_token end |
#rows ⇒ Array<Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpSaasplatformInsightsV1alphaRow>
Output only. Result rows returned containing the required value(s) for
configured insight.
Corresponds to the JSON property rows
2428 2429 2430 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2428 def rows @rows end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2435 2436 2437 2438 2439 |
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2435 def update!(**args) @applied_config = args[:applied_config] if args.key?(:applied_config) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @rows = args[:rows] if args.key?(:rows) end |