Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListSchemasResponse
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaListSchemasResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/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::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSchema>
The Schemas.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListSchemasResponse
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaListSchemasResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaListSchemasResponse
Returns a new instance of GoogleCloudDiscoveryengineV1alphaListSchemasResponse.
4109 4110 4111 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4109 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
4102 4103 4104 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4102 def next_page_token @next_page_token end |
#schemas ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSchema>
The Schemas.
Corresponds to the JSON property schemas
4107 4108 4109 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4107 def schemas @schemas end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4114 4115 4116 4117 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4114 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @schemas = args[:schemas] if args.key?(:schemas) end |