Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PrivateEndpoints
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PrivateEndpoints
- 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
PrivateEndpoints proto is used to provide paths for users to send requests privately. To send request via private service access, use predict_http_uri, explain_http_uri or health_http_uri. To send request via private service connect, use service_attachment.
Instance Attribute Summary collapse
-
#explain_http_uri ⇒ String
Output only.
-
#health_http_uri ⇒ String
Output only.
-
#predict_http_uri ⇒ String
Output only.
-
#service_attachment ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PrivateEndpoints
constructor
A new instance of GoogleCloudAiplatformV1PrivateEndpoints.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PrivateEndpoints
Returns a new instance of GoogleCloudAiplatformV1PrivateEndpoints.
19549 19550 19551 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19549 def initialize(**args) update!(**args) end |
Instance Attribute Details
#explain_http_uri ⇒ String
Output only. Http(s) path to send explain requests.
Corresponds to the JSON property explainHttpUri
19531 19532 19533 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19531 def explain_http_uri @explain_http_uri end |
#health_http_uri ⇒ String
Output only. Http(s) path to send health check requests.
Corresponds to the JSON property healthHttpUri
19536 19537 19538 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19536 def health_http_uri @health_http_uri end |
#predict_http_uri ⇒ String
Output only. Http(s) path to send prediction requests.
Corresponds to the JSON property predictHttpUri
19541 19542 19543 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19541 def predict_http_uri @predict_http_uri end |
#service_attachment ⇒ String
Output only. The name of the service attachment resource. Populated if private
service connect is enabled.
Corresponds to the JSON property serviceAttachment
19547 19548 19549 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19547 def @service_attachment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19554 19555 19556 19557 19558 19559 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19554 def update!(**args) @explain_http_uri = args[:explain_http_uri] if args.key?(:explain_http_uri) @health_http_uri = args[:health_http_uri] if args.key?(:health_http_uri) @predict_http_uri = args[:predict_http_uri] if args.key?(:predict_http_uri) @service_attachment = args[:service_attachment] if args.key?(:service_attachment) end |