Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchMigratableResourcesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SearchMigratableResourcesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Response message for MigrationService.SearchMigratableResources.
Instance Attribute Summary collapse
-
#migratable_resources ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResource>
All migratable resources that can be migrated to the location specified in the request.
-
#next_page_token ⇒ String
The standard next-page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchMigratableResourcesResponse
constructor
A new instance of GoogleCloudAiplatformV1SearchMigratableResourcesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SearchMigratableResourcesResponse
Returns a new instance of GoogleCloudAiplatformV1SearchMigratableResourcesResponse.
20931 20932 20933 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20931 def initialize(**args) update!(**args) end |
Instance Attribute Details
#migratable_resources ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1MigratableResource>
All migratable resources that can be migrated to the location specified in the
request.
Corresponds to the JSON property migratableResources
20923 20924 20925 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20923 def migratable_resources @migratable_resources end |
#next_page_token ⇒ String
The standard next-page token. The migratable_resources may not fill page_size
in SearchMigratableResourcesRequest even when there are subsequent pages.
Corresponds to the JSON property nextPageToken
20929 20930 20931 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20929 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20936 20937 20938 20939 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20936 def update!(**args) @migratable_resources = args[:migratable_resources] if args.key?(:migratable_resources) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |