Class: Google::Apis::FirebasehostingV1beta1::DomainRedirect

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

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DomainRedirect

Returns a new instance of DomainRedirect.



379
380
381
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 379

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

Instance Attribute Details

#domain_nameString

Required. The domain name to redirect to. Corresponds to the JSON property domainName

Returns:

  • (String)


372
373
374
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 372

def domain_name
  @domain_name
end

#typeString

Required. The redirect status code. Corresponds to the JSON property type

Returns:

  • (String)


377
378
379
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 377

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



384
385
386
387
# File 'generated/google/apis/firebasehosting_v1beta1/classes.rb', line 384

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