Class: Google::Apis::FirebasehostingV1beta1::PreviewConfig
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::PreviewConfig
- 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
-
#active ⇒ Boolean
(also: #active?)
If true, preview URLs are enabled for this version.
-
#expire_time ⇒ String
Indicates the expiration time for previewing this version; preview URL requests received after this time will 404.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreviewConfig
constructor
A new instance of PreviewConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#active ⇒ Boolean Also known as: active?
If true, preview URLs are enabled for this version.
Corresponds to the JSON property active
768 769 770 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 768 def active @active end |
#expire_time ⇒ String
Indicates the expiration time for previewing this version; preview URL
requests received after this time will 404.
Corresponds to the JSON property expireTime
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 |