Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeAnalyticsConfig
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1RuntimeAnalyticsConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
Runtime configuration for the Analytics add-on.
Instance Attribute Summary collapse
-
#billing_pipeline_enabled ⇒ Boolean
(also: #billing_pipeline_enabled?)
If Runtime should send billing data to AX or not.
-
#enabled ⇒ Boolean
(also: #enabled?)
If the Analytics is enabled or not.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1RuntimeAnalyticsConfig
constructor
A new instance of GoogleCloudApigeeV1RuntimeAnalyticsConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1RuntimeAnalyticsConfig
Returns a new instance of GoogleCloudApigeeV1RuntimeAnalyticsConfig.
8861 8862 8863 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8861 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_pipeline_enabled ⇒ Boolean Also known as: billing_pipeline_enabled?
If Runtime should send billing data to AX or not.
Corresponds to the JSON property billingPipelineEnabled
8852 8853 8854 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8852 def billing_pipeline_enabled @billing_pipeline_enabled end |
#enabled ⇒ Boolean Also known as: enabled?
If the Analytics is enabled or not.
Corresponds to the JSON property enabled
8858 8859 8860 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8858 def enabled @enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8866 8867 8868 8869 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 8866 def update!(**args) @billing_pipeline_enabled = args[:billing_pipeline_enabled] if args.key?(:billing_pipeline_enabled) @enabled = args[:enabled] if args.key?(:enabled) end |