Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SetPublisherModelConfigRequest

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

Request message for EndpointService.SetPublisherModelConfig.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SetPublisherModelConfigRequest

Returns a new instance of GoogleCloudAiplatformV1beta1SetPublisherModelConfigRequest.



59057
59058
59059
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 59057

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

Instance Attribute Details

#publisher_model_configGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelConfig

This message contains configs of a publisher model. Corresponds to the JSON property publisherModelConfig



59047
59048
59049
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 59047

def publisher_model_config
  @publisher_model_config
end

#update_maskString

Optional. The fields of publisher_model_config to overwrite. If empty, the entire config is replaced. If set, only the listed fields are overwritten and the others are left unchanged; this lets you update one setting (for example inference_event_logging_config) without clearing its siblings. Corresponds to the JSON property updateMask

Returns:

  • (String)


59055
59056
59057
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 59055

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



59062
59063
59064
59065
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 59062

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