Class: Google::Apis::DnsV1::Project
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1::Project
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v1/classes.rb,
generated/google/apis/dns_v1/representations.rb,
generated/google/apis/dns_v1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#id ⇒ String
User assigned unique identifier for the resource (output only).
-
#kind ⇒ String
Corresponds to the JSON property
kind
. -
#number ⇒ Fixnum
Unique numeric identifier for the resource; defined by the server (output only) .
-
#quota ⇒ Google::Apis::DnsV1::Quota
Limits associated with a Project.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Project
constructor
A new instance of Project.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Project
Returns a new instance of Project.
1254 1255 1256 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
User assigned unique identifier for the resource (output only).
Corresponds to the JSON property id
1236 1237 1238 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1236 def id @id end |
#kind ⇒ String
Corresponds to the JSON property kind
1241 1242 1243 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1241 def kind @kind end |
#number ⇒ Fixnum
Unique numeric identifier for the resource; defined by the server (output only)
.
Corresponds to the JSON property number
1247 1248 1249 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1247 def number @number end |
#quota ⇒ Google::Apis::DnsV1::Quota
Limits associated with a Project.
Corresponds to the JSON property quota
1252 1253 1254 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1252 def quota @quota end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1259 1260 1261 1262 1263 1264 |
# File 'generated/google/apis/dns_v1/classes.rb', line 1259 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 |