Class: Google::Apis::VmwareengineV1::ListAnnouncementsResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListAnnouncementsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb
Overview
Response message for VmwareEngine.ListAnnouncements
Instance Attribute Summary collapse
-
#announcements ⇒ Array<Google::Apis::VmwareengineV1::Announcement>
A list of announcement runs.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#unreachable ⇒ Array<String>
list of unreachable locations Corresponds to the JSON property
unreachable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListAnnouncementsResponse
constructor
A new instance of ListAnnouncementsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListAnnouncementsResponse
Returns a new instance of ListAnnouncementsResponse.
1386 1387 1388 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1386 def initialize(**args) update!(**args) end |
Instance Attribute Details
#announcements ⇒ Array<Google::Apis::VmwareengineV1::Announcement>
A list of announcement runs.
Corresponds to the JSON property announcements
1373 1374 1375 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1373 def announcements @announcements end |
#next_page_token ⇒ String
A token, which can be sent as page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1379 1380 1381 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1379 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
list of unreachable locations
Corresponds to the JSON property unreachable
1384 1385 1386 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1384 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1391 1392 1393 1394 1395 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1391 def update!(**args) @announcements = args[:announcements] if args.key?(:announcements) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |