Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Document
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1Document
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dialogflow_v2beta1/classes.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb,
generated/google/apis/dialogflow_v2beta1/representations.rb
Overview
A document resource.
Instance Attribute Summary collapse
-
#content ⇒ String
The raw content of the document.
-
#content_uri ⇒ String
The URI where the file content is located.
-
#display_name ⇒ String
Required.
-
#knowledge_types ⇒ Array<String>
Required.
-
#mime_type ⇒ String
Required.
-
#name ⇒ String
The document resource name.
-
#raw_content ⇒ String
The raw content of the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Document
constructor
A new instance of GoogleCloudDialogflowV2beta1Document.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1Document
Returns a new instance of GoogleCloudDialogflowV2beta1Document
2062 2063 2064 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2062 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
The raw content of the document. This field is only permitted for
EXTRACTIVE_QA and FAQ knowledge types.
Note: This field is in the process of being deprecated, please use
raw_content instead.
Corresponds to the JSON property content
2018 2019 2020 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2018 def content @content end |
#content_uri ⇒ String
The URI where the file content is located.
For documents stored in Google Cloud Storage, these URIs must have
the form gs://<bucket-name>/<object-name>
.
NOTE: External URLs must correspond to public webpages, i.e., they must
be indexed by Google Search. In particular, URLs for showing documents in
Google Cloud Storage (i.e. the URL in your browser) are not supported.
Instead use the gs://
format URI described above.
Corresponds to the JSON property contentUri
2029 2030 2031 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2029 def content_uri @content_uri end |
#display_name ⇒ String
Required. The display name of the document. The name must be 1024 bytes or
less; otherwise, the creation request fails.
Corresponds to the JSON property displayName
2035 2036 2037 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2035 def display_name @display_name end |
#knowledge_types ⇒ Array<String>
Required. The knowledge type of document content.
Corresponds to the JSON property knowledgeTypes
2040 2041 2042 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2040 def knowledge_types @knowledge_types end |
#mime_type ⇒ String
Required. The MIME type of this document.
Corresponds to the JSON property mimeType
2045 2046 2047 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2045 def mime_type @mime_type end |
#name ⇒ String
The document resource name.
The name must be empty when creating a document.
Format: projects/<Project ID>/knowledgeBases/<Knowledge Base
ID>/documents/<Document ID>
.
Corresponds to the JSON property name
2053 2054 2055 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2053 def name @name end |
#raw_content ⇒ String
The raw content of the document. This field is only permitted for
EXTRACTIVE_QA and FAQ knowledge types.
Corresponds to the JSON property rawContent
NOTE: Values are automatically base64 encoded/decoded in the client library.
2060 2061 2062 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2060 def raw_content @raw_content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2067 2068 2069 2070 2071 2072 2073 2074 2075 |
# File 'generated/google/apis/dialogflow_v2beta1/classes.rb', line 2067 def update!(**args) @content = args[:content] if args.key?(:content) @content_uri = args[:content_uri] if args.key?(:content_uri) @display_name = args[:display_name] if args.key?(:display_name) @knowledge_types = args[:knowledge_types] if args.key?(:knowledge_types) @mime_type = args[:mime_type] if args.key?(:mime_type) @name = args[:name] if args.key?(:name) @raw_content = args[:raw_content] if args.key?(:raw_content) end |