class Google::Apis::AppengineV1beta::DomainMapping
A domain serving an App Engine application.
Attributes
Relative name of the domain serving the application. Example: example.com. Corresponds to the JSON property `id` @return [String]
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]
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::AppengineV1beta::ResourceRecord>]
SSL configuration for a DomainMapping
resource. Corresponds to the JSON property `sslSettings` @return [Google::Apis::AppengineV1beta::SslSettings]
Public Class Methods
# File lib/google/apis/appengine_v1beta/classes.rb, line 875 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/appengine_v1beta/classes.rb, line 880 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