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.



243
244
245
# File 'lib/google/apis/looker_v1/classes.rb', line 243

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

Instance Attribute Details

#domainString

Domain name. Corresponds to the JSON property domain

Returns:

  • (String)


236
237
238
# File 'lib/google/apis/looker_v1/classes.rb', line 236

def domain
  @domain
end

#stateString

Domain state. Corresponds to the JSON property state

Returns:

  • (String)


241
242
243
# File 'lib/google/apis/looker_v1/classes.rb', line 241

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



248
249
250
251
# File 'lib/google/apis/looker_v1/classes.rb', line 248

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