Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChange
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsadmin_v1alpha/classes.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb,
lib/google/apis/analyticsadmin_v1alpha/representations.rb
Overview
A description of a change to a single Google Analytics resource.
Instance Attribute Summary collapse
-
#action ⇒ String
The type of action that changed this resource.
-
#resource ⇒ String
Resource name of the resource whose changes are described by this entry.
-
#resource_after_change ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource
A snapshot of a resource as before or after the result of a change in change history.
-
#resource_before_change ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource
A snapshot of a resource as before or after the result of a change in change history.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaChangeHistoryChange
constructor
A new instance of GoogleAnalyticsAdminV1alphaChangeHistoryChange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaChangeHistoryChange
Returns a new instance of GoogleAnalyticsAdminV1alphaChangeHistoryChange.
1754 1755 1756 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1754 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
The type of action that changed this resource.
Corresponds to the JSON property action
1735 1736 1737 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1735 def action @action end |
#resource ⇒ String
Resource name of the resource whose changes are described by this entry.
Corresponds to the JSON property resource
1740 1741 1742 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1740 def resource @resource end |
#resource_after_change ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource
A snapshot of a resource as before or after the result of a change in change
history.
Corresponds to the JSON property resourceAfterChange
1746 1747 1748 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1746 def resource_after_change @resource_after_change end |
#resource_before_change ⇒ Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaChangeHistoryChangeChangeHistoryResource
A snapshot of a resource as before or after the result of a change in change
history.
Corresponds to the JSON property resourceBeforeChange
1752 1753 1754 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1752 def resource_before_change @resource_before_change end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1759 1760 1761 1762 1763 1764 |
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1759 def update!(**args) @action = args[:action] if args.key?(:action) @resource = args[:resource] if args.key?(:resource) @resource_after_change = args[:resource_after_change] if args.key?(:resource_after_change) @resource_before_change = args[:resource_before_change] if args.key?(:resource_before_change) end |