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
-
#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.
19806 19807 19808 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19806 def initialize(**args) update!(**args) end |
Instance Attribute Details
#network ⇒ String
19799 19800 19801 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19799 def network @network end |
#project_id ⇒ String
Required. Project id used to create forwarding rule.
Corresponds to the JSON property projectId
19804 19805 19806 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19804 def project_id @project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
19811 19812 19813 19814 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 19811 def update!(**args) @network = args[:network] if args.key?(:network) @project_id = args[:project_id] if args.key?(:project_id) end |