Class: Google::Apis::TagmanagerV1::Container

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 Container.

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) ⇒ Container

Returns a new instance of Container



183
184
185
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 183

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

Instance Attribute Details

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


124
125
126
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 124

def 
  @account_id
end

#container_idString

The Container ID uniquely identifies the GTM Container. Corresponds to the JSON property containerId

Returns:

  • (String)


129
130
131
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 129

def container_id
  @container_id
end

#domain_nameArray<String>

Optional list of domain names associated with the Container. Corresponds to the JSON property domainName

Returns:

  • (Array<String>)


134
135
136
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 134

def domain_name
  @domain_name
end

#enabled_built_in_variableArray<String>

List of enabled built-in variables. Valid values include: pageUrl, pageHostname, pagePath, referrer, event, clickElement, clickClasses, clickId, clickTarget, clickUrl, clickText, formElement, formClasses, formId, formTarget, formUrl, formText, errorMessage, errorUrl, errorLine, newHistoryFragment, oldHistoryFragment, newHistoryState, oldHistoryState, historySource, containerVersion, debugMode, randomNumber, containerId. Corresponds to the JSON property enabledBuiltInVariable

Returns:

  • (Array<String>)


144
145
146
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 144

def enabled_built_in_variable
  @enabled_built_in_variable
end

#fingerprintString

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

Returns:

  • (String)


150
151
152
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 150

def fingerprint
  @fingerprint
end

#nameString

Container display name. Corresponds to the JSON property name

Returns:

  • (String)


155
156
157
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 155

def name
  @name
end

#notesString

Container Notes. Corresponds to the JSON property notes

Returns:

  • (String)


160
161
162
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 160

def notes
  @notes
end

#public_idString

Container Public ID. Corresponds to the JSON property publicId

Returns:

  • (String)


165
166
167
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 165

def public_id
  @public_id
end

#time_zone_country_idString

Container Country ID. Corresponds to the JSON property timeZoneCountryId

Returns:

  • (String)


170
171
172
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 170

def time_zone_country_id
  @time_zone_country_id
end

#time_zone_idString

Container Time Zone ID. Corresponds to the JSON property timeZoneId

Returns:

  • (String)


175
176
177
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 175

def time_zone_id
  @time_zone_id
end

#usage_contextArray<String>

List of Usage Contexts for the Container. Valid values include: web, android, ios. Corresponds to the JSON property usageContext

Returns:

  • (Array<String>)


181
182
183
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 181

def usage_context
  @usage_context
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



188
189
190
191
192
193
194
195
196
197
198
199
200
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 188

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @container_id = args[:container_id] if args.key?(:container_id)
  @domain_name = args[:domain_name] if args.key?(:domain_name)
  @enabled_built_in_variable = args[:enabled_built_in_variable] if args.key?(:enabled_built_in_variable)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @name = args[:name] if args.key?(:name)
  @notes = args[:notes] if args.key?(:notes)
  @public_id = args[:public_id] if args.key?(:public_id)
  @time_zone_country_id = args[:time_zone_country_id] if args.key?(:time_zone_country_id)
  @time_zone_id = args[:time_zone_id] if args.key?(:time_zone_id)
  @usage_context = args[:usage_context] if args.key?(:usage_context)
end