Class: Google::Apis::LookerV1::CustomDomain
- Inherits:
-
Object
- Object
- Google::Apis::LookerV1::CustomDomain
- 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
-
#domain ⇒ String
Domain name.
-
#state ⇒ String
Domain state.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CustomDomain
constructor
A new instance of CustomDomain.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#domain ⇒ String
Domain name.
Corresponds to the JSON property domain
236 237 238 |
# File 'lib/google/apis/looker_v1/classes.rb', line 236 def domain @domain end |
#state ⇒ String
Domain state.
Corresponds to the JSON property state
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 |