Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListServingProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListServingProfilesResponse
- 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
Response message for ServingProfileService.ListServingProfiles.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Output only.
-
#serving_profiles ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ServingProfile>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListServingProfilesResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ListServingProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListServingProfilesResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ListServingProfilesResponse.
33622 33623 33624 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Output only. A token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
33615 33616 33617 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33615 def next_page_token @next_page_token end |
#serving_profiles ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ServingProfile>
Output only. A list of ServingProfiles.
Corresponds to the JSON property servingProfiles
33620 33621 33622 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33620 def serving_profiles @serving_profiles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33627 33628 33629 33630 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33627 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @serving_profiles = args[:serving_profiles] if args.key?(:serving_profiles) end |