Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1XmanagerInstance
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1XmanagerInstance
- 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
-
#api_endpoint ⇒ String
Output only.
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#network ⇒ String
Required.
-
#registered_clusters ⇒ Array<String>
Output only.
-
#state ⇒ String
Output only.
-
#subnetwork ⇒ String
Required.
-
#ui_endpoint ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
-
#xprof_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1XprofConfig
XprofConfig contains the configuration for managed XProf.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1XmanagerInstance
constructor
A new instance of GoogleCloudAiplatformV1beta1XmanagerInstance.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_endpoint ⇒ String
Output only. gRPC API endpoint for Experiment State Server (ESS).
Corresponds to the JSON property apiEndpoint
69561 69562 69563 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69561 def api_endpoint @api_endpoint end |
#create_time ⇒ String
Output only. Creation timestamp.
Corresponds to the JSON property createTime
69566 69567 69568 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69566 def create_time @create_time end |
#name ⇒ String
Output only. Identifier. The resource name of the XmanagerInstance. Format:
projects/project/locations/location/xmanagerInstances/xmanager_instance
Corresponds to the JSON property name
69572 69573 69574 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69572 def name @name end |
#network ⇒ String
Required. Immutable. The VPC network in the consumer project. Format: projects/
project/global/networks/network
Corresponds to the JSON property network
69578 69579 69580 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69578 def network @network end |
#registered_clusters ⇒ Array<String>
Output only. The resource names of the ModelDevelopmentClusters registered
with this instance.
Corresponds to the JSON property registeredClusters
69584 69585 69586 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69584 def registered_clusters @registered_clusters end |
#state ⇒ String
Output only. The current state of the XmanagerInstance.
Corresponds to the JSON property state
69589 69590 69591 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69589 def state @state end |
#subnetwork ⇒ String
Required. Immutable. A subnet in network. Format: projects/project/regions/
region/subnetworks/subnetwork
Corresponds to the JSON property subnetwork
69595 69596 69597 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69595 def subnetwork @subnetwork end |
#ui_endpoint ⇒ String
Output only. UI endpoint for Xmanager.
Corresponds to the JSON property uiEndpoint
69600 69601 69602 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69600 def ui_endpoint @ui_endpoint end |
#update_time ⇒ String
Output only. Last update timestamp.
Corresponds to the JSON property updateTime
69605 69606 69607 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 69605 def update_time @update_time end |
#xprof_config ⇒ Google::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 |