Class: Google::Apis::DnsV1::DnsKeysListResponse
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1::DnsKeysListResponse
- 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
Instance Attribute Summary collapse
-
#dns_keys ⇒ Array<Google::Apis::DnsV1::DnsKey>
Corresponds to the JSON property
dnsKeys
. -
#header ⇒ Google::Apis::DnsV1::ResponseHeader
Corresponds to the JSON property
header
. -
#kind ⇒ String
Type of resource.
-
#next_page_token ⇒ String
Corresponds to the JSON property
nextPageToken
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DnsKeysListResponse
constructor
A new instance of DnsKeysListResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DnsKeysListResponse
Returns a new instance of DnsKeysListResponse
285 286 287 |
# File 'generated/google/apis/dns_v1/classes.rb', line 285 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dns_keys ⇒ Array<Google::Apis::DnsV1::DnsKey>
Corresponds to the JSON property dnsKeys
268 269 270 |
# File 'generated/google/apis/dns_v1/classes.rb', line 268 def dns_keys @dns_keys end |
#header ⇒ Google::Apis::DnsV1::ResponseHeader
Corresponds to the JSON property header
273 274 275 |
# File 'generated/google/apis/dns_v1/classes.rb', line 273 def header @header end |
#kind ⇒ String
Type of resource.
Corresponds to the JSON property kind
278 279 280 |
# File 'generated/google/apis/dns_v1/classes.rb', line 278 def kind @kind end |
#next_page_token ⇒ String
Corresponds to the JSON property nextPageToken
283 284 285 |
# File 'generated/google/apis/dns_v1/classes.rb', line 283 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
290 291 292 293 294 295 |
# File 'generated/google/apis/dns_v1/classes.rb', line 290 def update!(**args) @dns_keys = args[:dns_keys] if args.key?(:dns_keys) @header = args[:header] if args.key?(:header) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |