Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelCallToActionDeploy
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PublisherModelCallToActionDeploy
- 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
Model metadata that is needed for UploadModel or DeployModel/CreateEndpoint requests.
Instance Attribute Summary collapse
-
#artifact_uri ⇒ String
Optional.
-
#automatic_resources ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources
A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration.
-
#container_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec
Specification of a container for serving predictions.
-
#dedicated_resources ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources
A description of resources that are dedicated to a DeployedModel, and that need a higher degree of manual configuration.
-
#large_model_reference ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LargeModelReference
Contains information about the Large Model.
-
#model_display_name ⇒ String
Optional.
-
#shared_resources ⇒ String
The resource name of the shared DeploymentResourcePool to deploy on.
-
#title ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PublisherModelCallToActionDeploy
constructor
A new instance of GoogleCloudAiplatformV1PublisherModelCallToActionDeploy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PublisherModelCallToActionDeploy
Returns a new instance of GoogleCloudAiplatformV1PublisherModelCallToActionDeploy.
15100 15101 15102 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15100 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact_uri ⇒ String
Optional. The path to the directory containing the Model artifact and any of
its supporting files.
Corresponds to the JSON property artifactUri
15055 15056 15057 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15055 def artifact_uri @artifact_uri end |
#automatic_resources ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AutomaticResources
A description of resources that to large degree are decided by Vertex AI, and
require only a modest additional configuration. Each Model supporting these
resources documents its specific guidelines.
Corresponds to the JSON property automaticResources
15062 15063 15064 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15062 def automatic_resources @automatic_resources end |
#container_spec ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ModelContainerSpec
Specification of a container for serving predictions. Some fields in this
message correspond to fields in the Kubernetes Container v1 core
specification.
Corresponds to the JSON property containerSpec
15070 15071 15072 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15070 def container_spec @container_spec end |
#dedicated_resources ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DedicatedResources
A description of resources that are dedicated to a DeployedModel, and that
need a higher degree of manual configuration.
Corresponds to the JSON property dedicatedResources
15076 15077 15078 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15076 def dedicated_resources @dedicated_resources end |
#large_model_reference ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LargeModelReference
Contains information about the Large Model.
Corresponds to the JSON property largeModelReference
15081 15082 15083 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15081 def large_model_reference @large_model_reference end |
#model_display_name ⇒ String
Optional. Default model display name.
Corresponds to the JSON property modelDisplayName
15086 15087 15088 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15086 def model_display_name @model_display_name end |
#shared_resources ⇒ String
The resource name of the shared DeploymentResourcePool to deploy on. Format:
projects/project/locations/location/deploymentResourcePools/
deployment_resource_pool`
Corresponds to the JSON propertysharedResources`
15093 15094 15095 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15093 def shared_resources @shared_resources end |
#title ⇒ String
Required. The title of the regional resource reference.
Corresponds to the JSON property title
15098 15099 15100 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15098 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 15105 def update!(**args) @artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri) @automatic_resources = args[:automatic_resources] if args.key?(:automatic_resources) @container_spec = args[:container_spec] if args.key?(:container_spec) @dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources) @large_model_reference = args[:large_model_reference] if args.key?(:large_model_reference) @model_display_name = args[:model_display_name] if args.key?(:model_display_name) @shared_resources = args[:shared_resources] if args.key?(:shared_resources) @title = args[:title] if args.key?(:title) end |