Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSchema
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSchema
- 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
Defines the structure and layout of a type of document data.
Instance Attribute Summary collapse
-
#field_configs ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFieldConfig>
Output only.
-
#json_schema ⇒ String
The JSON representation of the schema.
-
#name ⇒ String
Immutable.
-
#struct_schema ⇒ Hash<String,Object>
The structured representation of the schema.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSchema
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaSchema.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSchema
Returns a new instance of GoogleCloudDiscoveryengineV1alphaSchema.
5091 5092 5093 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5091 def initialize(**args) update!(**args) end |
Instance Attribute Details
#field_configs ⇒ Array<Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaFieldConfig>
Output only. Configurations for fields of the schema.
Corresponds to the JSON property fieldConfigs
5071 5072 5073 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5071 def field_configs @field_configs end |
#json_schema ⇒ String
The JSON representation of the schema.
Corresponds to the JSON property jsonSchema
5076 5077 5078 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5076 def json_schema @json_schema end |
#name ⇒ String
Immutable. The full resource name of the schema, in the format of projects/
project/locations/
location/collections/
collection/dataStores/
data_store/
schemas/
schema`. This field must be a UTF-8 encoded string with a length
limit of 1024 characters.
Corresponds to the JSON property
name`
5084 5085 5086 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5084 def name @name end |
#struct_schema ⇒ Hash<String,Object>
The structured representation of the schema.
Corresponds to the JSON property structSchema
5089 5090 5091 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5089 def struct_schema @struct_schema end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5096 5097 5098 5099 5100 5101 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 5096 def update!(**args) @field_configs = args[:field_configs] if args.key?(:field_configs) @json_schema = args[:json_schema] if args.key?(:json_schema) @name = args[:name] if args.key?(:name) @struct_schema = args[:struct_schema] if args.key?(:struct_schema) end |