Class: Google::Apis::CloudcontrolspartnerV1::ListWorkloadsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudcontrolspartner_v1/classes.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb,
lib/google/apis/cloudcontrolspartner_v1/representations.rb

Overview

Response message for list customer workloads requests.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListWorkloadsResponse

Returns a new instance of ListWorkloadsResponse.



500
501
502
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 500

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#next_page_tokenString

A token that 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

Returns:

  • (String)


488
489
490
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 488

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


493
494
495
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 493

def unreachable
  @unreachable
end

#workloadsArray<Google::Apis::CloudcontrolspartnerV1::Workload>

List of customer workloads Corresponds to the JSON property workloads



498
499
500
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 498

def workloads
  @workloads
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



505
506
507
508
509
# File 'lib/google/apis/cloudcontrolspartner_v1/classes.rb', line 505

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
  @workloads = args[:workloads] if args.key?(:workloads)
end