Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig

Inherits:
Object
  • Object
show all
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 forwarding rule via ServiceConnectionMap.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1PscAutomationConfig

Returns a new instance of GoogleCloudAiplatformV1beta1PscAutomationConfig.



22091
22092
22093
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22091

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#networkString

Required. The full name of the Google Compute Engine network. Format: projects/ project/global/networks/network`. Whereprojectis a project number, as in '12345', andnetworkis network name. Corresponds to the JSON propertynetwork`

Returns:

  • (String)


22084
22085
22086
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22084

def network
  @network
end

#project_idString

Required. Project id used to create forwarding rule. Corresponds to the JSON property projectId

Returns:

  • (String)


22089
22090
22091
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22089

def project_id
  @project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22096
22097
22098
22099
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22096

def update!(**args)
  @network = args[:network] if args.key?(:network)
  @project_id = args[:project_id] if args.key?(:project_id)
end