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.
10173 10174 10175 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10173 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
10164 10165 10166 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10164 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
10170 10171 10172 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10170 def enabled @enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10178 10179 10180 10181 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 10178 def update!(**args) @billing_pipeline_enabled = args[:billing_pipeline_enabled] if args.key?(:billing_pipeline_enabled) @enabled = args[:enabled] if args.key?(:enabled) end |