Class: Google::Apis::ApigeeregistryV1::ListArtifactsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeregistryV1::ListArtifactsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigeeregistry_v1/classes.rb,
lib/google/apis/apigeeregistry_v1/representations.rb,
lib/google/apis/apigeeregistry_v1/representations.rb
Overview
Response message for ListArtifacts.
Instance Attribute Summary collapse
-
#artifacts ⇒ Array<Google::Apis::ApigeeregistryV1::Artifact>
The artifacts from the specified publisher.
-
#next_page_token ⇒ String
A token, which can be sent as
page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListArtifactsResponse
constructor
A new instance of ListArtifactsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListArtifactsResponse
Returns a new instance of ListArtifactsResponse.
967 968 969 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 967 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifacts ⇒ Array<Google::Apis::ApigeeregistryV1::Artifact>
The artifacts from the specified publisher.
Corresponds to the JSON property artifacts
959 960 961 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 959 def artifacts @artifacts end |
#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
965 966 967 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 965 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
972 973 974 975 |
# File 'lib/google/apis/apigeeregistry_v1/classes.rb', line 972 def update!(**args) @artifacts = args[:artifacts] if args.key?(:artifacts) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |