Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexPrivateEndpoints
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexPrivateEndpoints
- 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
IndexPrivateEndpoints proto is used to provide paths for users to send requests via private endpoints (e.g. private service access, private service connect). To send request via private service access, use match_grpc_address. To send request via private service connect, use service_attachment.
Instance Attribute Summary collapse
-
#match_grpc_address ⇒ String
Output only.
-
#service_attachment ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1IndexPrivateEndpoints
constructor
A new instance of GoogleCloudAiplatformV1beta1IndexPrivateEndpoints.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1IndexPrivateEndpoints
Returns a new instance of GoogleCloudAiplatformV1beta1IndexPrivateEndpoints.
8150 8151 8152 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#match_grpc_address ⇒ String
Output only. The ip address used to send match gRPC requests.
Corresponds to the JSON property matchGrpcAddress
8142 8143 8144 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8142 def match_grpc_address @match_grpc_address 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
8148 8149 8150 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8148 def @service_attachment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8155 8156 8157 8158 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 8155 def update!(**args) @match_grpc_address = args[:match_grpc_address] if args.key?(:match_grpc_address) @service_attachment = args[:service_attachment] if args.key?(:service_attachment) end |