google-apis-aiplatform_v1beta1 0.31.0 → 0.33.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +643 -127
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +265 -51
- data/lib/google/apis/aiplatform_v1beta1/service.rb +61 -12
- metadata +3 -3
@@ -1999,7 +1999,7 @@ module Google
|
|
1999
1999
|
|
2000
2000
|
# Updates a Dataset.
|
2001
2001
|
# @param [String] name
|
2002
|
-
# Output only. The resource name of the Dataset.
|
2002
|
+
# Output only. Identifier. The resource name of the Dataset.
|
2003
2003
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Dataset] google_cloud_aiplatform_v1beta1_dataset_object
|
2004
2004
|
# @param [String] update_mask
|
2005
2005
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
@@ -2955,7 +2955,7 @@ module Google
|
|
2955
2955
|
|
2956
2956
|
# Updates a DatasetVersion.
|
2957
2957
|
# @param [String] name
|
2958
|
-
# Output only. The resource name of the DatasetVersion.
|
2958
|
+
# Output only. Identifier. The resource name of the DatasetVersion.
|
2959
2959
|
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DatasetVersion] google_cloud_aiplatform_v1beta1_dataset_version_object
|
2960
2960
|
# @param [String] update_mask
|
2961
2961
|
# Required. The update mask applies to the resource. For the `FieldMask`
|
@@ -3604,6 +3604,44 @@ module Google
|
|
3604
3604
|
execute_or_queue_command(command, &block)
|
3605
3605
|
end
|
3606
3606
|
|
3607
|
+
# Update a DeploymentResourcePool.
|
3608
|
+
# @param [String] name
|
3609
|
+
# Immutable. The resource name of the DeploymentResourcePool. Format: `projects/`
|
3610
|
+
# project`/locations/`location`/deploymentResourcePools/`
|
3611
|
+
# deployment_resource_pool``
|
3612
|
+
# @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeploymentResourcePool] google_cloud_aiplatform_v1beta1_deployment_resource_pool_object
|
3613
|
+
# @param [String] update_mask
|
3614
|
+
# Required. The list of fields to update.
|
3615
|
+
# @param [String] fields
|
3616
|
+
# Selector specifying which fields to include in a partial response.
|
3617
|
+
# @param [String] quota_user
|
3618
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
3619
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
3620
|
+
# @param [Google::Apis::RequestOptions] options
|
3621
|
+
# Request-specific options
|
3622
|
+
#
|
3623
|
+
# @yield [result, err] Result & error if block supplied
|
3624
|
+
# @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
|
3625
|
+
# @yieldparam err [StandardError] error object if request failed
|
3626
|
+
#
|
3627
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
|
3628
|
+
#
|
3629
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3630
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3631
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3632
|
+
def patch_project_location_deployment_resource_pool(name, google_cloud_aiplatform_v1beta1_deployment_resource_pool_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3633
|
+
command = make_simple_command(:patch, 'v1beta1/{+name}', options)
|
3634
|
+
command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DeploymentResourcePool::Representation
|
3635
|
+
command.request_object = google_cloud_aiplatform_v1beta1_deployment_resource_pool_object
|
3636
|
+
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
|
3637
|
+
command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
|
3638
|
+
command.params['name'] = name unless name.nil?
|
3639
|
+
command.query['updateMask'] = update_mask unless update_mask.nil?
|
3640
|
+
command.query['fields'] = fields unless fields.nil?
|
3641
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
3642
|
+
execute_or_queue_command(command, &block)
|
3643
|
+
end
|
3644
|
+
|
3607
3645
|
# List DeployedModels that have been deployed on this DeploymentResourcePool.
|
3608
3646
|
# @param [String] deployment_resource_pool
|
3609
3647
|
# Required. The name of the target DeploymentResourcePool to query. Format: `
|
@@ -6157,7 +6195,8 @@ module Google
|
|
6157
6195
|
# to the resource, not the full request. A field will be overwritten if it is in
|
6158
6196
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
6159
6197
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
6160
|
-
# override all fields. Updatable fields: * `labels`
|
6198
|
+
# override all fields. Updatable fields: * `labels` * `description` * `big_query`
|
6199
|
+
# * `big_query.entity_id_columns`
|
6161
6200
|
# @param [String] fields
|
6162
6201
|
# Selector specifying which fields to include in a partial response.
|
6163
6202
|
# @param [String] quota_user
|
@@ -6387,7 +6426,8 @@ module Google
|
|
6387
6426
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
6388
6427
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
6389
6428
|
# override all fields. Updatable fields: * `description` * `labels` * `
|
6390
|
-
# disable_monitoring` (Not supported for
|
6429
|
+
# disable_monitoring` (Not supported for FeatureRegistryService Feature) * `
|
6430
|
+
# point_of_contact` (Not supported for FeaturestoreService FeatureStore)
|
6391
6431
|
# @param [String] fields
|
6392
6432
|
# Selector specifying which fields to include in a partial response.
|
6393
6433
|
# @param [String] quota_user
|
@@ -6932,8 +6972,9 @@ module Google
|
|
6932
6972
|
# update_mask are relative to the resource, not the full request. A field will
|
6933
6973
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
6934
6974
|
# only the non-empty fields present in the request will be overwritten. Set the
|
6935
|
-
# update_mask to `*` to override all fields. Updatable fields: * `
|
6936
|
-
#
|
6975
|
+
# update_mask to `*` to override all fields. Updatable fields: * `labels` * `
|
6976
|
+
# description` * `bigtable` * `bigtable.auto_scaling` * `bigtable.
|
6977
|
+
# enable_multi_region_replica`
|
6937
6978
|
# @param [String] fields
|
6938
6979
|
# Selector specifying which fields to include in a partial response.
|
6939
6980
|
# @param [String] quota_user
|
@@ -7302,7 +7343,10 @@ module Google
|
|
7302
7343
|
# to the resource, not the full request. A field will be overwritten if it is in
|
7303
7344
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
7304
7345
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
7305
|
-
# override all fields. Updatable fields: * `labels` * `
|
7346
|
+
# override all fields. Updatable fields: * `labels` * `service_agent_type` * `
|
7347
|
+
# big_query_source` * `big_query_source.uri` * `big_query_source.
|
7348
|
+
# entity_id_columns` * `feature_registry_source` * `feature_registry_source.
|
7349
|
+
# feature_groups` * `sync_config` * `sync_config.cron`
|
7306
7350
|
# @param [String] fields
|
7307
7351
|
# Selector specifying which fields to include in a partial response.
|
7308
7352
|
# @param [String] quota_user
|
@@ -9149,7 +9193,8 @@ module Google
|
|
9149
9193
|
# the mask. If the user does not provide a mask then only the non-empty fields
|
9150
9194
|
# present in the request will be overwritten. Set the update_mask to `*` to
|
9151
9195
|
# override all fields. Updatable fields: * `description` * `labels` * `
|
9152
|
-
# disable_monitoring` (Not supported for
|
9196
|
+
# disable_monitoring` (Not supported for FeatureRegistryService Feature) * `
|
9197
|
+
# point_of_contact` (Not supported for FeaturestoreService FeatureStore)
|
9153
9198
|
# @param [String] fields
|
9154
9199
|
# Selector specifying which fields to include in a partial response.
|
9155
9200
|
# @param [String] quota_user
|
@@ -23878,9 +23923,12 @@ module Google
|
|
23878
23923
|
# @param [String] name
|
23879
23924
|
# Required. The name of the PublisherModel resource. Format: `publishers/`
|
23880
23925
|
# publisher`/models/`publisher_model``
|
23926
|
+
# @param [Boolean] is_hugging_face_model
|
23927
|
+
# Optional. Boolean indicates whether the requested model is a Hugging Face
|
23928
|
+
# model.
|
23881
23929
|
# @param [String] language_code
|
23882
23930
|
# Optional. The IETF BCP-47 language code representing the language in which the
|
23883
|
-
# publisher model's text information should be written in
|
23931
|
+
# publisher model's text information should be written in.
|
23884
23932
|
# @param [String] view
|
23885
23933
|
# Optional. PublisherModel view specifying which fields to read.
|
23886
23934
|
# @param [String] fields
|
@@ -23900,11 +23948,12 @@ module Google
|
|
23900
23948
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
23901
23949
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
23902
23950
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
23903
|
-
def get_publisher_model(name, language_code: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23951
|
+
def get_publisher_model(name, is_hugging_face_model: nil, language_code: nil, view: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23904
23952
|
command = make_simple_command(:get, 'v1beta1/{+name}', options)
|
23905
23953
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModel::Representation
|
23906
23954
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModel
|
23907
23955
|
command.params['name'] = name unless name.nil?
|
23956
|
+
command.query['isHuggingFaceModel'] = is_hugging_face_model unless is_hugging_face_model.nil?
|
23908
23957
|
command.query['languageCode'] = language_code unless language_code.nil?
|
23909
23958
|
command.query['view'] = view unless view.nil?
|
23910
23959
|
command.query['fields'] = fields unless fields.nil?
|
@@ -23920,8 +23969,8 @@ module Google
|
|
23920
23969
|
# Optional. The standard list filter.
|
23921
23970
|
# @param [String] language_code
|
23922
23971
|
# Optional. The IETF BCP-47 language code representing the language in which the
|
23923
|
-
# publisher models' text information should be written in
|
23924
|
-
#
|
23972
|
+
# publisher models' text information should be written in. If not set, by
|
23973
|
+
# default English (en).
|
23925
23974
|
# @param [String] order_by
|
23926
23975
|
# Optional. A comma-separated list of fields to order by, sorted in ascending
|
23927
23976
|
# order. Use "desc" after a field name for descending.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.33.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.33.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|