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.



218
219
220
# File 'lib/google/apis/looker_v1/classes.rb', line 218

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

Instance Attribute Details

#domainString

Domain name. Corresponds to the JSON property domain

Returns:

  • (String)


211
212
213
# File 'lib/google/apis/looker_v1/classes.rb', line 211

def domain
  @domain
end

#stateString

Domain state. Corresponds to the JSON property state

Returns:

  • (String)


216
217
218
# File 'lib/google/apis/looker_v1/classes.rb', line 216

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



223
224
225
226
# File 'lib/google/apis/looker_v1/classes.rb', line 223

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