Class: Google::Apis::ResourceviewsV1beta2::OperationList
- Inherits:
-
Object
- Object
- Google::Apis::ResourceviewsV1beta2::OperationList
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/resourceviews_v1beta2/classes.rb,
generated/google/apis/resourceviews_v1beta2/representations.rb,
generated/google/apis/resourceviews_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#id ⇒ String
Unique identifier for the resource; defined by the server (output only).
-
#items ⇒ Array<Google::Apis::ResourceviewsV1beta2::Operation>
The operation resources.
-
#kind ⇒ String
Type of resource.
-
#next_page_token ⇒ String
A token used to continue a truncated list request (output only).
-
#self_link ⇒ String
Server defined URL for this resource (output only).
Instance Method Summary collapse
-
#initialize(**args) ⇒ OperationList
constructor
A new instance of OperationList.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationList
Returns a new instance of OperationList
371 372 373 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 371 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Unique identifier for the resource; defined by the server (output only).
Corresponds to the JSON property id
349 350 351 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 349 def id @id end |
#items ⇒ Array<Google::Apis::ResourceviewsV1beta2::Operation>
The operation resources.
Corresponds to the JSON property items
354 355 356 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 354 def items @items end |
#kind ⇒ String
Type of resource.
Corresponds to the JSON property kind
359 360 361 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 359 def kind @kind end |
#next_page_token ⇒ String
A token used to continue a truncated list request (output only).
Corresponds to the JSON property nextPageToken
364 365 366 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 364 def next_page_token @next_page_token end |
#self_link ⇒ String
Server defined URL for this resource (output only).
Corresponds to the JSON property selfLink
369 370 371 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 369 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
376 377 378 379 380 381 382 |
# File 'generated/google/apis/resourceviews_v1beta2/classes.rb', line 376 def update!(**args) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @self_link = args[:self_link] if args.key?(:self_link) end |