Class: Google::Apis::ApimV1alpha::ListApiOperationsResponse

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

Overview

Message for response to listing ApiOperations

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListApiOperationsResponse

Returns a new instance of ListApiOperationsResponse.



561
562
563
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 561

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

Instance Attribute Details

#api_operationsArray<Google::Apis::ApimV1alpha::ApiOperation>

The ApiOperations from the specified project and location and ObservationJob and ApiObservation. Corresponds to the JSON property apiOperations



553
554
555
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 553

def api_operations
  @api_operations
end

#next_page_tokenString

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

Returns:

  • (String)


559
560
561
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 559

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



566
567
568
569
# File 'lib/google/apis/apim_v1alpha/classes.rb', line 566

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