Class: Google::Apis::FirebasehostingV1beta1::Domain
- Inherits:
-
Object
- Object
- Google::Apis::FirebasehostingV1beta1::Domain
- 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
The intended behavior and status information of a domain.
Instance Attribute Summary collapse
-
#domain_name ⇒ String
Required.
-
#domain_redirect ⇒ Google::Apis::FirebasehostingV1beta1::DomainRedirect
Defines the behavior of a domain-level redirect.
-
#provisioning ⇒ Google::Apis::FirebasehostingV1beta1::DomainProvisioning
The current certificate provisioning status information for a domain.
-
#site ⇒ String
Required.
-
#status ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Domain
constructor
A new instance of Domain.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Domain
Returns a new instance of Domain.
714 715 716 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 714 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain_name ⇒ String
Required. The domain name of the association.
Corresponds to the JSON property domainName
685 686 687 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 685 def domain_name @domain_name end |
#domain_redirect ⇒ Google::Apis::FirebasehostingV1beta1::DomainRedirect
Defines the behavior of a domain-level redirect. Domain redirects preserve the
path of the redirect but replace the requested domain with the one specified
in the redirect configuration.
Corresponds to the JSON property domainRedirect
692 693 694 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 692 def domain_redirect @domain_redirect end |
#provisioning ⇒ Google::Apis::FirebasehostingV1beta1::DomainProvisioning
The current certificate provisioning status information for a domain.
Corresponds to the JSON property provisioning
697 698 699 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 697 def provisioning @provisioning end |
#site ⇒ String
Required. The site name of the association.
Corresponds to the JSON property site
702 703 704 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 702 def site @site end |
#status ⇒ String
Output only. Additional status of the domain association.
Corresponds to the JSON property status
707 708 709 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 707 def status @status end |
#update_time ⇒ String
Output only. The time at which the domain was last updated.
Corresponds to the JSON property updateTime
712 713 714 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 712 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
719 720 721 722 723 724 725 726 |
# File 'lib/google/apis/firebasehosting_v1beta1/classes.rb', line 719 def update!(**args) @domain_name = args[:domain_name] if args.key?(:domain_name) @domain_redirect = args[:domain_redirect] if args.key?(:domain_redirect) @provisioning = args[:provisioning] if args.key?(:provisioning) @site = args[:site] if args.key?(:site) @status = args[:status] if args.key?(:status) @update_time = args[:update_time] if args.key?(:update_time) end |