Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelResourceReference
- 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
Reference to a resource.
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the resource.
-
#resource_name ⇒ String
The resource name of the Google Cloud resource.
-
#uri ⇒ String
The URI of the resource.
-
#use_case ⇒ String
Use case (CUJ) of the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelResourceReference
constructor
A new instance of GoogleCloudAiplatformV1beta1PublisherModelResourceReference.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PublisherModelResourceReference
Returns a new instance of GoogleCloudAiplatformV1beta1PublisherModelResourceReference.
25018 25019 25020 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25018 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Description of the resource.
Corresponds to the JSON property description
25001 25002 25003 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25001 def description @description end |
#resource_name ⇒ String
The resource name of the Google Cloud resource.
Corresponds to the JSON property resourceName
25006 25007 25008 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25006 def resource_name @resource_name end |
#uri ⇒ String
The URI of the resource.
Corresponds to the JSON property uri
25011 25012 25013 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25011 def uri @uri end |
#use_case ⇒ String
Use case (CUJ) of the resource.
Corresponds to the JSON property useCase
25016 25017 25018 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25016 def use_case @use_case end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
25023 25024 25025 25026 25027 25028 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 25023 def update!(**args) @description = args[:description] if args.key?(:description) @resource_name = args[:resource_name] if args.key?(:resource_name) @uri = args[:uri] if args.key?(:uri) @use_case = args[:use_case] if args.key?(:use_case) end |