Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchEntryPoint
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchEntryPoint
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Google search entry point.
Instance Attribute Summary collapse
-
#rendered_content ⇒ String
Optional.
-
#sdk_blob ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchEntryPoint
constructor
A new instance of GoogleCloudAiplatformV1SearchEntryPoint.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchEntryPoint
Returns a new instance of GoogleCloudAiplatformV1SearchEntryPoint.
27723 27724 27725 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27723 def initialize(**args) update!(**args) end |
Instance Attribute Details
#rendered_content ⇒ String
Optional. Web content snippet that can be embedded in a web page or an app
webview.
Corresponds to the JSON property renderedContent
27715 27716 27717 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27715 def rendered_content @rendered_content end |
#sdk_blob ⇒ String
Optional. Base64 encoded JSON representing array of tuple.
Corresponds to the JSON property sdkBlob
NOTE: Values are automatically base64 encoded/decoded in the client library.
27721 27722 27723 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27721 def sdk_blob @sdk_blob end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27728 27729 27730 27731 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27728 def update!(**args) @rendered_content = args[:rendered_content] if args.key?(:rendered_content) @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob) end |