Class: Google::Apis::ApihubV1::GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApihubV1::GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse
- 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
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page. -
#runtime_project_attachments ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1RuntimeProjectAttachment>
List of runtime project attachments.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse
constructor
A new instance of GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse
Returns a new instance of GoogleCloudApihubV1ListRuntimeProjectAttachmentsResponse.
3223 3224 3225 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3223 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
3216 3217 3218 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3216 def next_page_token @next_page_token end |
#runtime_project_attachments ⇒ Array<Google::Apis::ApihubV1::GoogleCloudApihubV1RuntimeProjectAttachment>
List of runtime project attachments.
Corresponds to the JSON property runtimeProjectAttachments
3221 3222 3223 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3221 def @runtime_project_attachments end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3228 3229 3230 3231 |
# File 'lib/google/apis/apihub_v1/classes.rb', line 3228 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 |