Class: Google::Apis::AnalyticsadminV1beta::GoogleAnalyticsAdminV1betaMeasurementProtocolSecret

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/analyticsadmin_v1beta/classes.rb,
lib/google/apis/analyticsadmin_v1beta/representations.rb,
lib/google/apis/analyticsadmin_v1beta/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) ⇒ GoogleAnalyticsAdminV1betaMeasurementProtocolSecret

Returns a new instance of GoogleAnalyticsAdminV1betaMeasurementProtocolSecret.



1732
1733
1734
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1732

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)


1716
1717
1718
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1716

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/dataStreams/dataStream/ measurementProtocolSecrets/measurementProtocolSecret Corresponds to the JSON property name

Returns:

  • (String)


1723
1724
1725
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1723

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)


1730
1731
1732
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1730

def secret_value
  @secret_value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1737
1738
1739
1740
1741
# File 'lib/google/apis/analyticsadmin_v1beta/classes.rb', line 1737

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