Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListSchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaListSchemasResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Response message for SchemaService.ListSchemas method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token that can be sent as ListSchemasRequest.page_token to retrieve the next page.
-
#schemas ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSchema>
The Schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListSchemasResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1betaListSchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaListSchemasResponse
Returns a new instance of GoogleCloudDiscoveryengineV1betaListSchemasResponse.
28194 28195 28196 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28194 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
A token that can be sent as ListSchemasRequest.page_token to retrieve the next
page. If this field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
28187 28188 28189 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28187 def next_page_token @next_page_token end |
#schemas ⇒ Array<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSchema>
The Schemas.
Corresponds to the JSON property schemas
28192 28193 28194 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28192 def schemas @schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28199 28200 28201 28202 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 28199 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schemas = args[:schemas] if args.key?(:schemas) end |