Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1XmanagerInstance

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

XmanagerInstance represents a managed Xmanager on Cloud deployment.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1XmanagerInstance

Returns a new instance of GoogleCloudAiplatformV1beta1XmanagerInstance.



69612
69613
69614
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69612

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

Instance Attribute Details

#api_endpointString

Output only. gRPC API endpoint for Experiment State Server (ESS). Corresponds to the JSON property apiEndpoint

Returns:

  • (String)


69561
69562
69563
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69561

def api_endpoint
  @api_endpoint
end

#create_timeString

Output only. Creation timestamp. Corresponds to the JSON property createTime

Returns:

  • (String)


69566
69567
69568
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69566

def create_time
  @create_time
end

#nameString

Output only. Identifier. The resource name of the XmanagerInstance. Format: projects/project/locations/location/xmanagerInstances/xmanager_instance Corresponds to the JSON property name

Returns:

  • (String)


69572
69573
69574
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69572

def name
  @name
end

#networkString

Required. Immutable. The VPC network in the consumer project. Format: projects/ project/global/networks/network Corresponds to the JSON property network

Returns:

  • (String)


69578
69579
69580
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69578

def network
  @network
end

#registered_clustersArray<String>

Output only. The resource names of the ModelDevelopmentClusters registered with this instance. Corresponds to the JSON property registeredClusters

Returns:

  • (Array<String>)


69584
69585
69586
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69584

def registered_clusters
  @registered_clusters
end

#stateString

Output only. The current state of the XmanagerInstance. Corresponds to the JSON property state

Returns:

  • (String)


69589
69590
69591
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69589

def state
  @state
end

#subnetworkString

Required. Immutable. A subnet in network. Format: projects/project/regions/ region/subnetworks/subnetwork Corresponds to the JSON property subnetwork

Returns:

  • (String)


69595
69596
69597
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69595

def subnetwork
  @subnetwork
end

#ui_endpointString

Output only. UI endpoint for Xmanager. Corresponds to the JSON property uiEndpoint

Returns:

  • (String)


69600
69601
69602
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69600

def ui_endpoint
  @ui_endpoint
end

#update_timeString

Output only. Last update timestamp. Corresponds to the JSON property updateTime

Returns:

  • (String)


69605
69606
69607
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69605

def update_time
  @update_time
end

#xprof_configGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1XprofConfig

XprofConfig contains the configuration for managed XProf. Corresponds to the JSON property xprofConfig



69610
69611
69612
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69610

def xprof_config
  @xprof_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



69617
69618
69619
69620
69621
69622
69623
69624
69625
69626
69627
69628
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69617

def update!(**args)
  @api_endpoint = args[:api_endpoint] if args.key?(:api_endpoint)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @network = args[:network] if args.key?(:network)
  @registered_clusters = args[:registered_clusters] if args.key?(:registered_clusters)
  @state = args[:state] if args.key?(:state)
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
  @ui_endpoint = args[:ui_endpoint] if args.key?(:ui_endpoint)
  @update_time = args[:update_time] if args.key?(:update_time)
  @xprof_config = args[:xprof_config] if args.key?(:xprof_config)
end