Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscAutomationConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscAutomationConfig
- 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
PSC config that is used to automatically create forwarding rule via ServiceConnectionMap.
Instance Attribute Summary collapse
-
#forwarding_rule ⇒ String
Output only.
-
#ip_address ⇒ String
Output only.
-
#network ⇒ String
Required.
-
#project_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1PscAutomationConfig
constructor
A new instance of GoogleCloudAiplatformV1PscAutomationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1PscAutomationConfig
Returns a new instance of GoogleCloudAiplatformV1PscAutomationConfig.
20656 20657 20658 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20656 def initialize(**args) update!(**args) end |
Instance Attribute Details
#forwarding_rule ⇒ String
Output only. Forwarding rule created by the PSC service automation. Note for
Vector search, use IndexPrivateEndpoint instead.
Corresponds to the JSON property forwardingRule
20634 20635 20636 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20634 def forwarding_rule @forwarding_rule end |
#ip_address ⇒ String
Output only. IP address rule created by the PSC service automation. Note for
Vector search, use IndexPrivateEndpoint instead.
Corresponds to the JSON property ipAddress
20640 20641 20642 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20640 def ip_address @ip_address end |
#network ⇒ String
20649 20650 20651 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20649 def network @network end |
#project_id ⇒ String
Required. Project id used to create forwarding rule.
Corresponds to the JSON property projectId
20654 20655 20656 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20654 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20661 20662 20663 20664 20665 20666 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20661 def update!(**args) @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule) @ip_address = args[:ip_address] if args.key?(:ip_address) @network = args[:network] if args.key?(:network) @project_id = args[:project_id] if args.key?(:project_id) end |