Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelDocumentation
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelDocumentation
- 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
A named piece of documentation.
Instance Attribute Summary collapse
-
#content ⇒ String
Required.
-
#title ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PublisherModelDocumentation
constructor
A new instance of GoogleCloudAiplatformV1PublisherModelDocumentation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PublisherModelDocumentation
Returns a new instance of GoogleCloudAiplatformV1PublisherModelDocumentation.
19693 19694 19695 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19693 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
19685 19686 19687 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19685 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
19691 19692 19693 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19691 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19698 19699 19700 19701 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19698 def update!(**args) @content = args[:content] if args.key?(:content) @title = args[:title] if args.key?(:title) end |