Show / Hide Table of Contents

Class DomainMapping

A domain serving an App Engine application.

Inheritance
System.Object
DomainMapping
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class DomainMapping : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Id

Relative name of the domain serving the application. Example: example.com.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Name

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

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

ResourceRecords

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

Declaration
[JsonProperty("resourceRecords")]
public virtual IList<ResourceRecord> ResourceRecords { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ResourceRecord>

SslSettings

SSL configuration for this domain. If unconfigured, this domain will not serve with SSL.

Declaration
[JsonProperty("sslSettings")]
public virtual SslSettings SslSettings { get; set; }
Property Value
Type Description
SslSettings

Implements

IDirectResponseSchema
In This Article
Back to top