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.



528
529
530
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 528

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)


526
527
528
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 526

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)


520
521
522
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 520

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

Returns:

  • (String)


514
515
516
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 514

def service_ecdh_public_key
  @service_ecdh_public_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



533
534
535
536
537
# File 'generated/google/apis/proximitybeacon_v1beta1/classes.rb', line 533

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