Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExpressProject

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

The project for Vertex AI Express Mode.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExpressProject

Returns a new instance of GoogleCloudAiplatformV1beta1ExpressProject.



21176
21177
21178
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21176

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

Instance Attribute Details

#create_timeString

Output only. The time the project was created. Corresponds to the JSON property createTime

Returns:

  • (String)


21149
21150
21151
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21149

def create_time
  @create_time
end

#default_api_keyString

Output only. The default API key string of the project. Corresponds to the JSON property defaultApiKey

Returns:

  • (String)


21154
21155
21156
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21154

def default_api_key
  @default_api_key
end

#project_idString

Output only. The ID of the project. Corresponds to the JSON property projectId

Returns:

  • (String)


21159
21160
21161
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21159

def project_id
  @project_id
end

#project_numberFixnum

Output only. The number of the project. Corresponds to the JSON property projectNumber

Returns:

  • (Fixnum)


21164
21165
21166
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21164

def project_number
  @project_number
end

#regionString

Output only. The region of the project. Corresponds to the JSON property region

Returns:

  • (String)


21169
21170
21171
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21169

def region
  @region
end

#tierString

Output only. The tier of the project. Corresponds to the JSON property tier

Returns:

  • (String)


21174
21175
21176
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21174

def tier
  @tier
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



21181
21182
21183
21184
21185
21186
21187
21188
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 21181

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