Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListServingProfilesResponse

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

Response message for ServingProfileService.ListServingProfiles.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListServingProfilesResponse

Returns a new instance of GoogleCloudAiplatformV1beta1ListServingProfilesResponse.



33017
33018
33019
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33017

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

Instance Attribute Details

#next_page_tokenString

Output only. A token to retrieve the next page of results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


33010
33011
33012
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33010

def next_page_token
  @next_page_token
end

#serving_profilesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ServingProfile>

Output only. A list of ServingProfiles. Corresponds to the JSON property servingProfiles



33015
33016
33017
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33015

def serving_profiles
  @serving_profiles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33022
33023
33024
33025
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33022

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