Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse

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

Overview

The ListRuntimeProjectAttachments method's response.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse

Returns a new instance of GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse.



3325
3326
3327
# File 'lib/google/apis/apihub_v1/classes.rb', line 3325

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

Instance Attribute Details

#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)


3318
3319
3320
# File 'lib/google/apis/apihub_v1/classes.rb', line 3318

def next_page_token
  @next_page_token
end

#runtime_project_attachmentsArray<Google::Apis::ApihubV1::GoogleCloudApihubV1RuntimeProjectAttachment>

List of runtime project attachments. Corresponds to the JSON property runtimeProjectAttachments



3323
3324
3325
# File 'lib/google/apis/apihub_v1/classes.rb', line 3323

def runtime_project_attachments
  @runtime_project_attachments
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3330
3331
3332
3333
# File 'lib/google/apis/apihub_v1/classes.rb', line 3330

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