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
-
#references ⇒ Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference>
Required.
-
#resource_description ⇒ String
Optional.
-
#resource_title ⇒ String
Optional.
-
#resource_use_case ⇒ String
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.
20874 20875 20876 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20874 def initialize(**args) update!(**args) end |
Instance Attribute Details
#references ⇒ Hash<String,Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference>
Required.
Corresponds to the JSON property references
20852 20853 20854 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20852 def references @references end |
#resource_description ⇒ String
Optional. Description of the resource.
Corresponds to the JSON property resourceDescription
20857 20858 20859 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20857 def resource_description @resource_description end |
#resource_title ⇒ String
Optional. Title of the resource.
Corresponds to the JSON property resourceTitle
20862 20863 20864 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20862 def resource_title @resource_title end |
#resource_use_case ⇒ String
Optional. Use case (CUJ) of the resource.
Corresponds to the JSON property resourceUseCase
20867 20868 20869 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20867 def resource_use_case @resource_use_case end |
#title ⇒ String
Required.
Corresponds to the JSON property title
20872 20873 20874 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20872 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20879 20880 20881 20882 20883 20884 20885 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 20879 def update!(**args) @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) @title = args[:title] if args.key?(:title) end |