Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelDocumentation
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelDocumentation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
A named piece of documentation.
Instance Attribute Summary collapse
-
#content ⇒ String
Required.
-
#title ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelDocumentation
constructor
A new instance of GoogleCloudAiplatformV1beta1PublisherModelDocumentation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelDocumentation
Returns a new instance of GoogleCloudAiplatformV1beta1PublisherModelDocumentation.
40492 40493 40494 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 40492 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content ⇒ String
Required. Content of this piece of document (in Markdown format).
Corresponds to the JSON property content
40484 40485 40486 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 40484 def content @content end |
#title ⇒ String
Required. E.g., OVERVIEW, USE CASES, DOCUMENTATION, SDK & SAMPLES, JAVA, NODE.
JS, etc..
Corresponds to the JSON property title
40490 40491 40492 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 40490 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
40497 40498 40499 40500 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 40497 def update!(**args) @content = args[:content] if args.key?(:content) @title = args[:title] if args.key?(:title) end |