Class: Google::Apis::LookerV1::CustomDomain

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

Overview

Custom domain information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CustomDomain

Returns a new instance of CustomDomain.



105
106
107
# File 'lib/google/apis/looker_v1/classes.rb', line 105

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

Instance Attribute Details

#domainString

Domain name. Corresponds to the JSON property domain

Returns:

  • (String)


98
99
100
# File 'lib/google/apis/looker_v1/classes.rb', line 98

def domain
  @domain
end

#stateString

Domain state. Corresponds to the JSON property state

Returns:

  • (String)


103
104
105
# File 'lib/google/apis/looker_v1/classes.rb', line 103

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



110
111
112
113
# File 'lib/google/apis/looker_v1/classes.rb', line 110

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