Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnableModelResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnableModelResponse
- 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
Response message for ModelGardenService.EnableModel.
Instance Attribute Summary collapse
-
#enablement_state ⇒ String
Output only.
-
#publisher_endpoint ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1EnableModelResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1EnableModelResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1EnableModelResponse
Returns a new instance of GoogleCloudAiplatformV1beta1EnableModelResponse.
9644 9645 9646 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enablement_state ⇒ String
Output only. The result of the model enablement.
Corresponds to the JSON property enablementState
9635 9636 9637 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9635 def enablement_state @enablement_state end |
#publisher_endpoint ⇒ String
Output only. The publisher endpoint that the project is enabled for. Format:
projects/project/locations/location/publishers/publisher/models/
publisher_model`
Corresponds to the JSON propertypublisherEndpoint`
9642 9643 9644 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9642 def publisher_endpoint @publisher_endpoint end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9649 9650 9651 9652 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 9649 def update!(**args) @enablement_state = args[:enablement_state] if args.key?(:enablement_state) @publisher_endpoint = args[:publisher_endpoint] if args.key?(:publisher_endpoint) end |