Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnableModelResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1EnableModelResponse

Returns a new instance of GoogleCloudAiplatformV1beta1EnableModelResponse.



16230
16231
16232
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16230

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enablement_stateString

Output only. The result of the model enablement. Corresponds to the JSON property enablementState

Returns:

  • (String)


16221
16222
16223
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16221

def enablement_state
  @enablement_state
end

#publisher_endpointString

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`

Returns:

  • (String)


16228
16229
16230
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16228

def publisher_endpoint
  @publisher_endpoint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16235
16236
16237
16238
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 16235

def update!(**args)
  @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
  @publisher_endpoint = args[:publisher_endpoint] if args.key?(:publisher_endpoint)
end