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.



33556
33557
33558
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33556

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)


33549
33550
33551
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33549

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



33554
33555
33556
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33554

def serving_profiles
  @serving_profiles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33561
33562
33563
33564
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33561

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