class Google::Apis::AppengineV1::DomainMapping

A domain serving an App Engine application.

Attributes

id[RW]

Relative name of the domain serving the application. Example: example.com. Corresponds to the JSON property `id` @return [String]

name[RW]

Full path to the DomainMapping resource in the API. Example: apps/myapp/ OutputOnly at domainMapping/example.com. Corresponds to the JSON property `name` @return [String]

resource_records[RW]

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` @return [Array<Google::Apis::AppengineV1::ResourceRecord>]

ssl_settings[RW]

SSL configuration for a DomainMapping resource. Corresponds to the JSON property `sslSettings` @return [Google::Apis::AppengineV1::SslSettings]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 796
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/appengine_v1/classes.rb, line 801
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