Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences
- 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
The regional resource name or the URI. Key is region, e.g., us-central1, europe-west2, global, etc..
Instance Attribute Summary collapse
-
#colab_notebook_disabled ⇒ Boolean
(also: #colab_notebook_disabled?)
Optional.
-
#references ⇒ Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference>
Required.
-
#resource_description ⇒ String
Optional.
-
#resource_title ⇒ String
Optional.
-
#resource_use_case ⇒ String
Optional.
-
#supports_workbench ⇒ Boolean
(also: #supports_workbench?)
Optional.
-
#title ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences
constructor
A new instance of GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences
Returns a new instance of GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences.
35478 35479 35480 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35478 def initialize(**args) update!(**args) end |
Instance Attribute Details
#colab_notebook_disabled ⇒ Boolean Also known as: colab_notebook_disabled?
Optional. For notebook resource. When set to true, the Colab Enterprise link
will be disabled in the "open notebook" dialog in UI.
Corresponds to the JSON property colabNotebookDisabled
35444 35445 35446 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35444 def colab_notebook_disabled @colab_notebook_disabled end |
#references ⇒ Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference>
Required.
Corresponds to the JSON property references
35450 35451 35452 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35450 def references @references end |
#resource_description ⇒ String
Optional. Description of the resource.
Corresponds to the JSON property resourceDescription
35455 35456 35457 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35455 def resource_description @resource_description end |
#resource_title ⇒ String
Optional. Title of the resource.
Corresponds to the JSON property resourceTitle
35460 35461 35462 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35460 def resource_title @resource_title end |
#resource_use_case ⇒ String
Optional. Use case (CUJ) of the resource.
Corresponds to the JSON property resourceUseCase
35465 35466 35467 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35465 def resource_use_case @resource_use_case end |
#supports_workbench ⇒ Boolean Also known as: supports_workbench?
Optional. For notebook resource, whether the notebook supports Workbench.
Corresponds to the JSON property supportsWorkbench
35470 35471 35472 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35470 def supports_workbench @supports_workbench end |
#title ⇒ String
Required.
Corresponds to the JSON property title
35476 35477 35478 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35476 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
35483 35484 35485 35486 35487 35488 35489 35490 35491 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 35483 def update!(**args) @colab_notebook_disabled = args[:colab_notebook_disabled] if args.key?(:colab_notebook_disabled) @references = args[:references] if args.key?(:references) @resource_description = args[:resource_description] if args.key?(:resource_description) @resource_title = args[:resource_title] if args.key?(:resource_title) @resource_use_case = args[:resource_use_case] if args.key?(:resource_use_case) @supports_workbench = args[:supports_workbench] if args.key?(:supports_workbench) @title = args[:title] if args.key?(:title) end |