Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret

Inherits:
Object
  • Object
show all
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 secret value used for sending hits to Measurement Protocol.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret

Returns a new instance of GoogleAnalyticsAdminV1alphaMeasurementProtocolSecret.



1854
1855
1856
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1854

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

Instance Attribute Details

#display_nameString

Required. Human-readable display name for this secret. Corresponds to the JSON property displayName

Returns:

  • (String)


1838
1839
1840
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1838

def display_name
  @display_name
end

#nameString

Output only. Resource name of this secret. This secret may be a child of any type of stream. Format: properties/property/webDataStreams/webDataStream/ measurementProtocolSecrets/measurementProtocolSecret Corresponds to the JSON property name

Returns:

  • (String)


1845
1846
1847
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1845

def name
  @name
end

#secret_valueString

Output only. The measurement protocol secret value. Pass this value to the api_secret field of the Measurement Protocol API when sending hits to this secret's parent property. Corresponds to the JSON property secretValue

Returns:

  • (String)


1852
1853
1854
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1852

def secret_value
  @secret_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1859
1860
1861
1862
1863
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1859

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @name = args[:name] if args.key?(:name)
  @secret_value = args[:secret_value] if args.key?(:secret_value)
end