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.



33622
33623
33624
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33622

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)


33615
33616
33617
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 33615

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



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