Class: Google::Apis::TagmanagerV2::ContainerVersionHeader

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

Overview

Represents a Google Tag Manager Container Version Header.

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

Returns a new instance of ContainerVersionHeader.



600
601
602
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 600

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

Instance Attribute Details

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


537
538
539
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 537

def 
  @account_id
end

#container_idString

GTM Container ID. Corresponds to the JSON property containerId

Returns:

  • (String)


542
543
544
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 542

def container_id
  @container_id
end

#container_version_idString

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

Returns:

  • (String)


547
548
549
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 547

def container_version_id
  @container_version_id
end

#deletedBoolean Also known as: deleted?

A value of true indicates this container version has been deleted. Corresponds to the JSON property deleted

Returns:

  • (Boolean)


552
553
554
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 552

def deleted
  @deleted
end

#nameString

Container version display name. Corresponds to the JSON property name

Returns:

  • (String)


558
559
560
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 558

def name
  @name
end

#num_custom_templatesString

Number of custom templates in the container version. Corresponds to the JSON property numCustomTemplates

Returns:

  • (String)


563
564
565
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 563

def num_custom_templates
  @num_custom_templates
end

#num_macrosString

Number of macros in the container version. Corresponds to the JSON property numMacros

Returns:

  • (String)


568
569
570
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 568

def num_macros
  @num_macros
end

#num_rulesString

Number of rules in the container version. Corresponds to the JSON property numRules

Returns:

  • (String)


573
574
575
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 573

def num_rules
  @num_rules
end

#num_tagsString

Number of tags in the container version. Corresponds to the JSON property numTags

Returns:

  • (String)


578
579
580
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 578

def num_tags
  @num_tags
end

#num_triggersString

Number of triggers in the container version. Corresponds to the JSON property numTriggers

Returns:

  • (String)


583
584
585
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 583

def num_triggers
  @num_triggers
end

#num_variablesString

Number of variables in the container version. Corresponds to the JSON property numVariables

Returns:

  • (String)


588
589
590
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 588

def num_variables
  @num_variables
end

#num_zonesString

Number of zones in the container version. Corresponds to the JSON property numZones

Returns:

  • (String)


593
594
595
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 593

def num_zones
  @num_zones
end

#pathString

GTM Container Versions's API relative path. Corresponds to the JSON property path

Returns:

  • (String)


598
599
600
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 598

def path
  @path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 605

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @container_id = args[:container_id] if args.key?(:container_id)
  @container_version_id = args[:container_version_id] if args.key?(:container_version_id)
  @deleted = args[:deleted] if args.key?(:deleted)
  @name = args[:name] if args.key?(:name)
  @num_custom_templates = args[:num_custom_templates] if args.key?(:num_custom_templates)
  @num_macros = args[:num_macros] if args.key?(:num_macros)
  @num_rules = args[:num_rules] if args.key?(:num_rules)
  @num_tags = args[:num_tags] if args.key?(:num_tags)
  @num_triggers = args[:num_triggers] if args.key?(:num_triggers)
  @num_variables = args[:num_variables] if args.key?(:num_variables)
  @num_zones = args[:num_zones] if args.key?(:num_zones)
  @path = args[:path] if args.key?(:path)
end