Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExpressProject
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExpressProject
- 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
The project for Vertex AI Express Mode.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#default_api_key ⇒ String
Output only.
-
#project_id ⇒ String
Output only.
-
#project_number ⇒ Fixnum
Output only.
-
#region ⇒ String
Output only.
-
#tier ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExpressProject
constructor
A new instance of GoogleCloudAiplatformV1beta1ExpressProject.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExpressProject
Returns a new instance of GoogleCloudAiplatformV1beta1ExpressProject.
22103 22104 22105 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22103 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time the project was created.
Corresponds to the JSON property createTime
22076 22077 22078 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22076 def create_time @create_time end |
#default_api_key ⇒ String
Output only. The default API key string of the project.
Corresponds to the JSON property defaultApiKey
22081 22082 22083 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22081 def default_api_key @default_api_key end |
#project_id ⇒ String
Output only. The ID of the project.
Corresponds to the JSON property projectId
22086 22087 22088 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22086 def project_id @project_id end |
#project_number ⇒ Fixnum
Output only. The number of the project.
Corresponds to the JSON property projectNumber
22091 22092 22093 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22091 def project_number @project_number end |
#region ⇒ String
Output only. The region of the project.
Corresponds to the JSON property region
22096 22097 22098 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22096 def region @region end |
#tier ⇒ String
Output only. The tier of the project.
Corresponds to the JSON property tier
22101 22102 22103 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22101 def tier @tier end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22108 22109 22110 22111 22112 22113 22114 22115 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 22108 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @default_api_key = args[:default_api_key] if args.key?(:default_api_key) @project_id = args[:project_id] if args.key?(:project_id) @project_number = args[:project_number] if args.key?(:project_number) @region = args[:region] if args.key?(:region) @tier = args[:tier] if args.key?(:tier) end |