Class: Google::Apis::TagmanagerV1::Rule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/google/apis/tagmanager_v1/representations.rb

Overview

Represents a Google Tag Manager Rule.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Rule

Returns a new instance of Rule.



1127
1128
1129
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1127

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


1088
1089
1090
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1088

def 
  @account_id
end

#conditionArray<Google::Apis::TagmanagerV1::Condition>

The list of conditions that make up this rule (implicit AND between them). Corresponds to the JSON property condition



1095
1096
1097
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1095

def condition
  @condition
end

#container_idString

GTM Container ID. Corresponds to the JSON property containerId

Returns:

  • (String)


1100
1101
1102
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1100

def container_id
  @container_id
end

#fingerprintString

The fingerprint of the GTM Rule as computed at storage time. This value is recomputed whenever the rule is modified. Corresponds to the JSON property fingerprint

Returns:

  • (String)


1106
1107
1108
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1106

def fingerprint
  @fingerprint
end

#nameString

Rule display name. Corresponds to the JSON property name

Returns:

  • (String)


1113
1114
1115
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1113

def name
  @name
end

#notesString

User notes on how to apply this rule in the container. Corresponds to the JSON property notes

Returns:

  • (String)


1120
1121
1122
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1120

def notes
  @notes
end

#rule_idString

The Rule ID uniquely identifies the GTM Rule. Corresponds to the JSON property ruleId

Returns:

  • (String)


1125
1126
1127
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1125

def rule_id
  @rule_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1132
1133
1134
1135
1136
1137
1138
1139
1140
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1132

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @condition = args[:condition] if args.key?(:condition)
  @container_id = args[:container_id] if args.key?(:container_id)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @name = args[:name] if args.key?(:name)
  @notes = args[:notes] if args.key?(:notes)
  @rule_id = args[:rule_id] if args.key?(:rule_id)
end