Class: Google::Apis::AppengineV1alpha::DomainMapping

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

Overview

A domain serving an App Engine application.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DomainMapping

Returns a new instance of DomainMapping.



258
259
260
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 258

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

Instance Attribute Details

#idString

Relative name of the domain serving the application. Example: example.com. Corresponds to the JSON property id

Returns:

  • (String)


238
239
240
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 238

def id
  @id
end

#nameString

Full path to the DomainMapping resource in the API. Example: apps/myapp/ domainMapping/example.com.@OutputOnly Corresponds to the JSON property name

Returns:

  • (String)


244
245
246
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 244

def name
  @name
end

#resource_recordsArray<Google::Apis::AppengineV1alpha::ResourceRecord>

The resource records required to configure this domain mapping. These records must be added to the domain's DNS configuration in order to serve the application via this domain mapping.@OutputOnly Corresponds to the JSON property resourceRecords



251
252
253
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 251

def resource_records
  @resource_records
end

#ssl_settingsGoogle::Apis::AppengineV1alpha::SslSettings

SSL configuration for a DomainMapping resource. Corresponds to the JSON property sslSettings



256
257
258
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 256

def ssl_settings
  @ssl_settings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



263
264
265
266
267
268
# File 'generated/google/apis/appengine_v1alpha/classes.rb', line 263

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @name = args[:name] if args.key?(:name)
  @resource_records = args[:resource_records] if args.key?(:resource_records)
  @ssl_settings = args[:ssl_settings] if args.key?(:ssl_settings)
end