Class: Google::Apis::FirebasehostingV1beta1::PreviewConfig

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

Overview

Deprecated in favor of site channels.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PreviewConfig

Returns a new instance of PreviewConfig.



777
778
779
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 777

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

Instance Attribute Details

#activeBoolean Also known as: active?

If true, preview URLs are enabled for this version. Corresponds to the JSON property active

Returns:

  • (Boolean)


768
769
770
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 768

def active
  @active
end

#expire_timeString

Indicates the expiration time for previewing this version; preview URL requests received after this time will 404. Corresponds to the JSON property expireTime

Returns:

  • (String)


775
776
777
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 775

def expire_time
  @expire_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



782
783
784
785
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 782

def update!(**args)
  @active = args[:active] if args.key?(:active)
  @expire_time = args[:expire_time] if args.key?(:expire_time)
end