Class: Google::Apis::AppengineV1beta::DomainMapping
- Inherits:
-
Object
- Object
- Google::Apis::AppengineV1beta::DomainMapping
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/appengine_v1beta/classes.rb,
generated/google/apis/appengine_v1beta/representations.rb,
generated/google/apis/appengine_v1beta/representations.rb
Overview
A domain serving an App Engine application.
Instance Attribute Summary collapse
-
#id ⇒ String
Relative name of the domain serving the application.
-
#name ⇒ String
Full path to the DomainMapping resource in the API.
-
#resource_records ⇒ Array<Google::Apis::AppengineV1beta::ResourceRecord>
The resource records required to configure this domain mapping.
-
#ssl_settings ⇒ Google::Apis::AppengineV1beta::SslSettings
SSL configuration for a DomainMapping resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DomainMapping
constructor
A new instance of DomainMapping.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DomainMapping
Returns a new instance of DomainMapping
858 859 860 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 858 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Relative name of the domain serving the application. Example: example.com.
Corresponds to the JSON property id
838 839 840 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 838 def id @id end |
#name ⇒ String
Full path to the DomainMapping resource in the API. Example: apps/myapp/
domainMapping/example.com.@OutputOnly
Corresponds to the JSON property name
844 845 846 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 844 def name @name end |
#resource_records ⇒ Array<Google::Apis::AppengineV1beta::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
851 852 853 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 851 def resource_records @resource_records end |
#ssl_settings ⇒ Google::Apis::AppengineV1beta::SslSettings
SSL configuration for a DomainMapping resource.
Corresponds to the JSON property sslSettings
856 857 858 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 856 def ssl_settings @ssl_settings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
863 864 865 866 867 868 |
# File 'generated/google/apis/appengine_v1beta/classes.rb', line 863 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 |