class Google::Apis::AppengineV1::AuthorizedDomain
A domain that a user has been authorized to administer. To authorize use of a domain, verify ownership via Webmaster Central (www.google.com/ webmasters/verification/home).
Attributes
id[RW]
Fully qualified domain name of the domain authorized for use. Example: example. com. Corresponds to the JSON property `id` @return [String]
name[RW]
Full path to the AuthorizedDomain
resource in the API. Example: apps/myapp/ OutputOnly at authorizedDomains/example.com.
Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/appengine_v1/classes.rb, line 312 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 317 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end