Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig
- 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
PSC config that is used to automatically create PSC endpoints in the user projects.
Instance Attribute Summary collapse
-
#error_message ⇒ String
Output only.
-
#forwarding_rule ⇒ String
Output only.
-
#ip_address ⇒ String
Output only.
-
#network ⇒ String
Required.
-
#project_id ⇒ String
Required.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PscAutomationConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1PscAutomationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PscAutomationConfig
Returns a new instance of GoogleCloudAiplatformV1beta1PscAutomationConfig.
39362 39363 39364 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39362 def initialize(**args) update!(**args) end |
Instance Attribute Details
#error_message ⇒ String
Output only. Error message if the PSC service automation failed.
Corresponds to the JSON property errorMessage
39332 39333 39334 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39332 def @error_message end |
#forwarding_rule ⇒ String
Output only. Forwarding rule created by the PSC service automation.
Corresponds to the JSON property forwardingRule
39337 39338 39339 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39337 def forwarding_rule @forwarding_rule end |
#ip_address ⇒ String
Output only. IP address rule created by the PSC service automation.
Corresponds to the JSON property ipAddress
39342 39343 39344 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39342 def ip_address @ip_address end |
#network ⇒ String
39350 39351 39352 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39350 def network @network end |
#project_id ⇒ String
Required. Project id used to create forwarding rule.
Corresponds to the JSON property projectId
39355 39356 39357 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39355 def project_id @project_id end |
#state ⇒ String
Output only. The state of the PSC service automation.
Corresponds to the JSON property state
39360 39361 39362 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39360 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
39367 39368 39369 39370 39371 39372 39373 39374 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 39367 def update!(**args) @error_message = args[:error_message] if args.key?(:error_message) @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) @state = args[:state] if args.key?(:state) end |