Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
- 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
Request message for MigrationService.SearchMigratableResources.
Instance Attribute Summary collapse
-
#filter ⇒ String
A filter for your search.
-
#page_size ⇒ Fixnum
The standard page size.
-
#page_token ⇒ String
The standard page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
Returns a new instance of GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest.
30261 30262 30263 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30261 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter ⇒ String
A filter for your search. You can use the following types of filters: *
Resource type filters. The following strings filter for a specific type of
MigratableResource: * ml_engine_model_version:* * automl_model:* *
automl_dataset:* * data_labeling_dataset:* * "Migrated or not" filters. The
following strings filter for resources that either have or have not already
been migrated: * last_migrate_time:* filters for migrated resources. * NOT
last_migrate_time:* filters for not yet migrated resources.
Corresponds to the JSON property filter
30249 30250 30251 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30249 def filter @filter end |
#page_size ⇒ Fixnum
The standard page size. The default and maximum value is 100.
Corresponds to the JSON property pageSize
30254 30255 30256 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30254 def page_size @page_size end |
#page_token ⇒ String
The standard page token.
Corresponds to the JSON property pageToken
30259 30260 30261 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30259 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30266 30267 30268 30269 30270 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30266 def update!(**args) @filter = args[:filter] if args.key?(:filter) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end |