Class: Google::Apis::TagmanagerV2::Environment

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

Overview

Represents a Google Tag Manager Environment. Note that a user can create, delete and update environments of type USER, but can only update the enable_debug and url fields of environments of other types.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Environment

Returns a new instance of Environment.



924
925
926
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 924

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

Instance Attribute Details

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


842
843
844
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 842

def 
  @account_id
end

#authorization_codeString

The environment authorization code. Corresponds to the JSON property authorizationCode

Returns:

  • (String)


847
848
849
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 847

def authorization_code
  @authorization_code
end

#authorization_timestampString

The last update time-stamp for the authorization code. Corresponds to the JSON property authorizationTimestamp

Returns:

  • (String)


852
853
854
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 852

def authorization_timestamp
  @authorization_timestamp
end

#container_idString

GTM Container ID. Corresponds to the JSON property containerId

Returns:

  • (String)


857
858
859
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 857

def container_id
  @container_id
end

#container_version_idString

Represents a link to a container version. Corresponds to the JSON property containerVersionId

Returns:

  • (String)


862
863
864
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 862

def container_version_id
  @container_version_id
end

#descriptionString

The environment description. Can be set or changed only on USER type environments. @mutable tagmanager.accounts.containers.environments.create @ mutable tagmanager.accounts.containers.environments.update Corresponds to the JSON property description

Returns:

  • (String)


869
870
871
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 869

def description
  @description
end

#enable_debugBoolean Also known as: enable_debug?

Whether or not to enable debug by default for the environment. @mutable tagmanager.accounts.containers.environments.create @mutable tagmanager. accounts.containers.environments.update Corresponds to the JSON property enableDebug

Returns:

  • (Boolean)


876
877
878
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 876

def enable_debug
  @enable_debug
end

#environment_idString

GTM Environment ID uniquely identifies the GTM Environment. Corresponds to the JSON property environmentId

Returns:

  • (String)


882
883
884
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 882

def environment_id
  @environment_id
end

#fingerprintString

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

Returns:

  • (String)


888
889
890
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 888

def fingerprint
  @fingerprint
end

#nameString

The environment display name. Can be set or changed only on USER type environments. @mutable tagmanager.accounts.containers.environments.create @ mutable tagmanager.accounts.containers.environments.update Corresponds to the JSON property name

Returns:

  • (String)


895
896
897
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 895

def name
  @name
end

#pathString

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

Returns:

  • (String)


900
901
902
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 900

def path
  @path
end

#tag_manager_urlString

Auto generated link to the tag manager UI Corresponds to the JSON property tagManagerUrl

Returns:

  • (String)


905
906
907
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 905

def tag_manager_url
  @tag_manager_url
end

#typeString

The type of this environment. Corresponds to the JSON property type

Returns:

  • (String)


910
911
912
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 910

def type
  @type
end

#urlString

Default preview page url for the environment. @mutable tagmanager.accounts. containers.environments.create @mutable tagmanager.accounts.containers. environments.update Corresponds to the JSON property url

Returns:

  • (String)


917
918
919
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 917

def url
  @url
end

#workspace_idString

Represents a link to a quick preview of a workspace. Corresponds to the JSON property workspaceId

Returns:

  • (String)


922
923
924
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 922

def workspace_id
  @workspace_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 929

def update!(**args)
  @account_id = args[:account_id] if args.key?(:account_id)
  @authorization_code = args[:authorization_code] if args.key?(:authorization_code)
  @authorization_timestamp = args[:authorization_timestamp] if args.key?(:authorization_timestamp)
  @container_id = args[:container_id] if args.key?(:container_id)
  @container_version_id = args[:container_version_id] if args.key?(:container_version_id)
  @description = args[:description] if args.key?(:description)
  @enable_debug = args[:enable_debug] if args.key?(:enable_debug)
  @environment_id = args[:environment_id] if args.key?(:environment_id)
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
  @name = args[:name] if args.key?(:name)
  @path = args[:path] if args.key?(:path)
  @tag_manager_url = args[:tag_manager_url] if args.key?(:tag_manager_url)
  @type = args[:type] if args.key?(:type)
  @url = args[:url] if args.key?(:url)
  @workspace_id = args[:workspace_id] if args.key?(:workspace_id)
end