class Google::Apis::RunV1::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]
Relative name of the domain authorized for use. Example: `example.com`. Corresponds to the JSON property `id` @return [String]
name[RW]
Deprecated Read only. Full path to the `AuthorizedDomain` resource in the API. Example: `projects/myproject/authorizedDomains/example.com`. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/run_v1/classes.rb, line 132 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/run_v1/classes.rb, line 137 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) end