Class: Google::Apis::ProximitybeaconV1beta1::EphemeralIdRegistrationParams

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

Overview

Information a client needs to provision and register beacons that broadcast Eddystone-EID format beacon IDs, using Elliptic curve Diffie-Hellman key exchange. See the Eddystone specification at GitHub.

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

Returns a new instance of EphemeralIdRegistrationParams.



570
571
572
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 570

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

Instance Attribute Details

#max_rotation_period_exponentFixnum

Indicates the maximum rotation period supported by the service. See EddystoneEidRegistration.rotation_period_exponent Corresponds to the JSON property maxRotationPeriodExponent

Returns:

  • (Fixnum)


554
555
556
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 554

def max_rotation_period_exponent
  @max_rotation_period_exponent
end

#min_rotation_period_exponentFixnum

Indicates the minimum rotation period supported by the service. See EddystoneEidRegistration.rotation_period_exponent Corresponds to the JSON property minRotationPeriodExponent

Returns:

  • (Fixnum)


561
562
563
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 561

def min_rotation_period_exponent
  @min_rotation_period_exponent
end

#service_ecdh_public_keyString

The beacon service's public key for use by a beacon to derive its Identity Key using Elliptic Curve Diffie-Hellman key exchange. Corresponds to the JSON property serviceEcdhPublicKey NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


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

def service_ecdh_public_key
  @service_ecdh_public_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



575
576
577
578
579
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 575

def update!(**args)
  @max_rotation_period_exponent = args[:max_rotation_period_exponent] if args.key?(:max_rotation_period_exponent)
  @min_rotation_period_exponent = args[:min_rotation_period_exponent] if args.key?(:min_rotation_period_exponent)
  @service_ecdh_public_key = args[:service_ecdh_public_key] if args.key?(:service_ecdh_public_key)
end