class Google::Apis::DnsV1::Project
A project resource. The project is a top level container for resources including Cloud DNS ManagedZones. Projects can be created only in the APIs console. Next tag: 7.
Attributes
id[RW]
User assigned unique identifier for the resource (output only). Corresponds to the JSON property `id` @return [String]
kind[RW]
Corresponds to the JSON property `kind` @return [String]
number[RW]
Unique numeric identifier for the resource; defined by the server (output only) . Corresponds to the JSON property `number` @return [Fixnum]
quota[RW]
Limits associated with a Project
. Corresponds to the JSON property `quota` @return [Google::Apis::DnsV1::Quota]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dns_v1/classes.rb, line 1760 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dns_v1/classes.rb, line 1765 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @number = args[:number] if args.key?(:number) @quota = args[:quota] if args.key?(:quota) end