Class: Google::Cloud::AIPlatform::V1::UploadModelRequest
- Inherits:
-
Object
- Object
- Google::Cloud::AIPlatform::V1::UploadModelRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/aiplatform/v1/model_service.rb
Overview
Request message for ModelService.UploadModel.
Instance Attribute Summary collapse
-
#model ⇒ ::Google::Cloud::AIPlatform::V1::Model
Required.
-
#model_id ⇒ ::String
Optional.
-
#parent ⇒ ::String
Required.
-
#parent_model ⇒ ::String
Optional.
-
#service_account ⇒ ::String
Optional.
Instance Attribute Details
#model ⇒ ::Google::Cloud::AIPlatform::V1::Model
Returns Required. The Model to create.
53 54 55 56 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_service.rb', line 53 class UploadModelRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#model_id ⇒ ::String
Returns Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name.
This value may be up to 63 characters, and valid characters are
[a-z0-9_-]
. The first character cannot be a number or hyphen.
53 54 55 56 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_service.rb', line 53 class UploadModelRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. The resource name of the Location into which to upload the Model.
Format: projects/{project}/locations/{location}
.
53 54 55 56 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_service.rb', line 53 class UploadModelRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent_model ⇒ ::String
Returns Optional. The resource name of the model into which to upload the version. Only specify this field when uploading a new version.
53 54 55 56 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_service.rb', line 53 class UploadModelRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#service_account ⇒ ::String
Returns Optional. The user-provided custom service account to use to do the model
upload. If empty, Vertex AI Service
Agent
will be used to access resources needed to upload the model. This account
must belong to the target project where the model is uploaded to, i.e., the
project specified in the parent
field of this request and have necessary
read permissions (to Google Cloud Storage, Artifact Registry, etc.).
53 54 55 56 |
# File 'proto_docs/google/cloud/aiplatform/v1/model_service.rb', line 53 class UploadModelRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |