Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestEndpointConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployRequestEndpointConfig
- 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
The endpoint config to use for the deployment.
Instance Attribute Summary collapse
-
#dedicated_endpoint_enabled ⇒ Boolean
(also: #dedicated_endpoint_enabled?)
Optional.
-
#endpoint_display_name ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1DeployRequestEndpointConfig
constructor
A new instance of GoogleCloudAiplatformV1DeployRequestEndpointConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1DeployRequestEndpointConfig
Returns a new instance of GoogleCloudAiplatformV1DeployRequestEndpointConfig.
6327 6328 6329 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6327 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dedicated_endpoint_enabled ⇒ Boolean Also known as: dedicated_endpoint_enabled?
Optional. If true, the endpoint will be exposed through a dedicated DNS [
Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be
isolated from other users' traffic and will have better performance and
reliability. Note: Once you enabled dedicated endpoint, you won't be able to
send request to the shared DNS region-aiplatform.googleapis.com. The
limitations will be removed soon.
Corresponds to the JSON property dedicatedEndpointEnabled
6318 6319 6320 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6318 def dedicated_endpoint_enabled @dedicated_endpoint_enabled end |
#endpoint_display_name ⇒ String
Optional. The user-specified display name of the endpoint. If not set, a
default name will be used.
Corresponds to the JSON property endpointDisplayName
6325 6326 6327 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6325 def endpoint_display_name @endpoint_display_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6332 6333 6334 6335 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 6332 def update!(**args) @dedicated_endpoint_enabled = args[:dedicated_endpoint_enabled] if args.key?(:dedicated_endpoint_enabled) @endpoint_display_name = args[:endpoint_display_name] if args.key?(:endpoint_display_name) end |