google-apis-aiplatform_v1beta1 0.52.0 → 0.54.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/aiplatform_v1beta1/classes.rb +85 -19
- data/lib/google/apis/aiplatform_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/aiplatform_v1beta1/representations.rb +20 -0
- data/lib/google/apis/aiplatform_v1beta1/service.rb +12 -2
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b13baf22c432bd73d4a8b494223ee69063f55f034caa9d43ae13ef385851215
|
4
|
+
data.tar.gz: ca922f7a1206a6a5c7c0e9f6f6891f44f2d9ce956b3600932f496a0fa7dc61f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7ec7e49d06df866fa8fd33d0c8844363db33dcf12b04e1d328bb0567fcef97192bcbeefebb29e4425860b14c78c717d3bd07c9f361bfcfda214c263d8c04faf2
|
7
|
+
data.tar.gz: ebf35af08763d75d43a440e476f36832f484df32bf86172a7c42cc3a2c111235bb0164ffdbddc22a16fcb7127442e3a08fc33a55fc6755df7ca8df0ada64cabb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1beta1
|
2
2
|
|
3
|
+
### v0.54.0 (2025-07-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250711
|
6
|
+
|
7
|
+
### v0.53.0 (2025-07-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250701
|
10
|
+
|
3
11
|
### v0.52.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250613
|
@@ -6364,6 +6364,12 @@ module Google
|
|
6364
6364
|
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutoscalingMetricSpec>]
|
6365
6365
|
attr_accessor :autoscaling_metric_specs
|
6366
6366
|
|
6367
|
+
# FlexStart is used to schedule the deployment workload on DWS resource. It
|
6368
|
+
# contains the max duration of the deployment.
|
6369
|
+
# Corresponds to the JSON property `flexStart`
|
6370
|
+
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FlexStart]
|
6371
|
+
attr_accessor :flex_start
|
6372
|
+
|
6367
6373
|
# Specification of a single machine.
|
6368
6374
|
# Corresponds to the JSON property `machineSpec`
|
6369
6375
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
|
@@ -6414,6 +6420,7 @@ module Google
|
|
6414
6420
|
# Update properties of this object
|
6415
6421
|
def update!(**args)
|
6416
6422
|
@autoscaling_metric_specs = args[:autoscaling_metric_specs] if args.key?(:autoscaling_metric_specs)
|
6423
|
+
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
6417
6424
|
@machine_spec = args[:machine_spec] if args.key?(:machine_spec)
|
6418
6425
|
@max_replica_count = args[:max_replica_count] if args.key?(:max_replica_count)
|
6419
6426
|
@min_replica_count = args[:min_replica_count] if args.key?(:min_replica_count)
|
@@ -7094,6 +7101,17 @@ module Google
|
|
7094
7101
|
attr_accessor :enable_access_logging
|
7095
7102
|
alias_method :enable_access_logging?, :enable_access_logging
|
7096
7103
|
|
7104
|
+
# Optional. If true, logs to Cloud Logging errors relating to datapoint upserts.
|
7105
|
+
# Under normal operation conditions, these log entries should be very rare.
|
7106
|
+
# However, if incompatible datapoint updates are being uploaded to an index, a
|
7107
|
+
# high volume of log entries may be generated in a short period of time. Note
|
7108
|
+
# that logs may incur a cost, especially if the deployed index receives a high
|
7109
|
+
# volume of datapoint upserts. Estimate your costs before enabling this option.
|
7110
|
+
# Corresponds to the JSON property `enableDatapointUpsertLogging`
|
7111
|
+
# @return [Boolean]
|
7112
|
+
attr_accessor :enable_datapoint_upsert_logging
|
7113
|
+
alias_method :enable_datapoint_upsert_logging?, :enable_datapoint_upsert_logging
|
7114
|
+
|
7097
7115
|
# Required. The user specified ID of the DeployedIndex. The ID can be up to 128
|
7098
7116
|
# characters long and must start with a letter and only contain letters, numbers,
|
7099
7117
|
# and underscores. The ID must be unique within the project it is created in.
|
@@ -7161,6 +7179,7 @@ module Google
|
|
7161
7179
|
@deployment_group = args[:deployment_group] if args.key?(:deployment_group)
|
7162
7180
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7163
7181
|
@enable_access_logging = args[:enable_access_logging] if args.key?(:enable_access_logging)
|
7182
|
+
@enable_datapoint_upsert_logging = args[:enable_datapoint_upsert_logging] if args.key?(:enable_datapoint_upsert_logging)
|
7164
7183
|
@id = args[:id] if args.key?(:id)
|
7165
7184
|
@index = args[:index] if args.key?(:index)
|
7166
7185
|
@index_sync_time = args[:index_sync_time] if args.key?(:index_sync_time)
|
@@ -9056,6 +9075,11 @@ module Google
|
|
9056
9075
|
# @return [String]
|
9057
9076
|
attr_accessor :branch
|
9058
9077
|
|
9078
|
+
# The custom metadata of the LlmResponse.
|
9079
|
+
# Corresponds to the JSON property `customMetadata`
|
9080
|
+
# @return [Hash<String,Object>]
|
9081
|
+
attr_accessor :custom_metadata
|
9082
|
+
|
9059
9083
|
# Metadata returned to client when grounding is enabled.
|
9060
9084
|
# Corresponds to the JSON property `groundingMetadata`
|
9061
9085
|
# @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GroundingMetadata]
|
@@ -9096,6 +9120,7 @@ module Google
|
|
9096
9120
|
# Update properties of this object
|
9097
9121
|
def update!(**args)
|
9098
9122
|
@branch = args[:branch] if args.key?(:branch)
|
9123
|
+
@custom_metadata = args[:custom_metadata] if args.key?(:custom_metadata)
|
9099
9124
|
@grounding_metadata = args[:grounding_metadata] if args.key?(:grounding_metadata)
|
9100
9125
|
@interrupted = args[:interrupted] if args.key?(:interrupted)
|
9101
9126
|
@long_running_tool_ids = args[:long_running_tool_ids] if args.key?(:long_running_tool_ids)
|
@@ -12390,9 +12415,9 @@ module Google
|
|
12390
12415
|
|
12391
12416
|
# Feature generation timestamp. Typically, it is provided by user at feature
|
12392
12417
|
# ingestion time. If not, feature store will use the system timestamp when the
|
12393
|
-
# data is ingested into feature store.
|
12394
|
-
# aligned by days, must be no older than five years (1825
|
12395
|
-
# than one year (366 days) in the future.
|
12418
|
+
# data is ingested into feature store. Legacy Feature Store: For streaming
|
12419
|
+
# ingestion, the time, aligned by days, must be no older than five years (1825
|
12420
|
+
# days) and no later than one year (366 days) in the future.
|
12396
12421
|
# Corresponds to the JSON property `generateTime`
|
12397
12422
|
# @return [String]
|
12398
12423
|
attr_accessor :generate_time
|
@@ -14015,6 +14040,28 @@ module Google
|
|
14015
14040
|
end
|
14016
14041
|
end
|
14017
14042
|
|
14043
|
+
# FlexStart is used to schedule the deployment workload on DWS resource. It
|
14044
|
+
# contains the max duration of the deployment.
|
14045
|
+
class GoogleCloudAiplatformV1beta1FlexStart
|
14046
|
+
include Google::Apis::Core::Hashable
|
14047
|
+
|
14048
|
+
# The max duration of the deployment is max_runtime_duration. The deployment
|
14049
|
+
# will be terminated after the duration. The max_runtime_duration can be set up
|
14050
|
+
# to 7 days.
|
14051
|
+
# Corresponds to the JSON property `maxRuntimeDuration`
|
14052
|
+
# @return [String]
|
14053
|
+
attr_accessor :max_runtime_duration
|
14054
|
+
|
14055
|
+
def initialize(**args)
|
14056
|
+
update!(**args)
|
14057
|
+
end
|
14058
|
+
|
14059
|
+
# Update properties of this object
|
14060
|
+
def update!(**args)
|
14061
|
+
@max_runtime_duration = args[:max_runtime_duration] if args.key?(:max_runtime_duration)
|
14062
|
+
end
|
14063
|
+
end
|
14064
|
+
|
14018
14065
|
# Input for fluency metric.
|
14019
14066
|
class GoogleCloudAiplatformV1beta1FluencyInput
|
14020
14067
|
include Google::Apis::Core::Hashable
|
@@ -15397,8 +15444,7 @@ module Google
|
|
15397
15444
|
attr_accessor :include_thoughts
|
15398
15445
|
alias_method :include_thoughts?, :include_thoughts
|
15399
15446
|
|
15400
|
-
# Optional. Indicates the thinking budget in tokens.
|
15401
|
-
# enable_thinking is true.
|
15447
|
+
# Optional. Indicates the thinking budget in tokens.
|
15402
15448
|
# Corresponds to the JSON property `thinkingBudget`
|
15403
15449
|
# @return [Fixnum]
|
15404
15450
|
attr_accessor :thinking_budget
|
@@ -19634,7 +19680,7 @@ module Google
|
|
19634
19680
|
end
|
19635
19681
|
end
|
19636
19682
|
|
19637
|
-
# The metric used for
|
19683
|
+
# The metric used for running evaluations.
|
19638
19684
|
class GoogleCloudAiplatformV1beta1Metric
|
19639
19685
|
include Google::Apis::Core::Hashable
|
19640
19686
|
|
@@ -20688,10 +20734,11 @@ module Google
|
|
20688
20734
|
|
20689
20735
|
# Immutable. Invoke route prefix for the custom container. "/*" is the only
|
20690
20736
|
# supported value right now. By setting this field, any non-root route on this
|
20691
|
-
# model will be accessible with
|
20692
|
-
#
|
20693
|
-
#
|
20694
|
-
# set
|
20737
|
+
# model will be accessible with invoke http call eg: "/invoke/foo/bar", however
|
20738
|
+
# the [PredictionService.Invoke] RPC is not supported yet. Only one of `
|
20739
|
+
# predict_route` or `invoke_route_prefix` can be set, and we default to using `
|
20740
|
+
# predict_route` if this field is not set. If this field is set, the Model can
|
20741
|
+
# only be deployed to dedicated endpoint.
|
20695
20742
|
# Corresponds to the JSON property `invokeRoutePrefix`
|
20696
20743
|
# @return [String]
|
20697
20744
|
attr_accessor :invoke_route_prefix
|
@@ -25037,8 +25084,8 @@ module Google
|
|
25037
25084
|
end
|
25038
25085
|
end
|
25039
25086
|
|
25040
|
-
# PSC config that is used to automatically create
|
25041
|
-
#
|
25087
|
+
# PSC config that is used to automatically create PSC endpoints in the user
|
25088
|
+
# projects.
|
25042
25089
|
class GoogleCloudAiplatformV1beta1PscAutomationConfig
|
25043
25090
|
include Google::Apis::Core::Hashable
|
25044
25091
|
|
@@ -25059,9 +25106,8 @@ module Google
|
|
25059
25106
|
|
25060
25107
|
# Required. The full name of the Google Compute Engine [network](https://cloud.
|
25061
25108
|
# google.com/compute/docs/networks-and-firewalls#networks). [Format](https://
|
25062
|
-
# cloud.google.com/compute/docs/reference/rest/v1/networks/
|
25063
|
-
# project`/global/networks/`network``.
|
25064
|
-
# in '12345', and `network` is network name.
|
25109
|
+
# cloud.google.com/compute/docs/reference/rest/v1/networks/get): `projects/`
|
25110
|
+
# project`/global/networks/`network``.
|
25065
25111
|
# Corresponds to the JSON property `network`
|
25066
25112
|
# @return [String]
|
25067
25113
|
attr_accessor :network
|
@@ -26255,6 +26301,16 @@ module Google
|
|
26255
26301
|
# @return [String]
|
26256
26302
|
attr_accessor :task_name
|
26257
26303
|
|
26304
|
+
# Output only. The unique name of a task. This field is used by rerun pipeline
|
26305
|
+
# job. Console UI and Vertex AI SDK will support triggering pipeline job reruns.
|
26306
|
+
# The name is constructed by concatenating all the parent tasks name with the
|
26307
|
+
# task name. For example, if a task named "child_task" has a parent task named "
|
26308
|
+
# parent_task_1" and parent task 1 has a parent task named "parent_task_2", the
|
26309
|
+
# task unique name will be "parent_task_2.parent_task_1.child_task".
|
26310
|
+
# Corresponds to the JSON property `taskUniqueName`
|
26311
|
+
# @return [String]
|
26312
|
+
attr_accessor :task_unique_name
|
26313
|
+
|
26258
26314
|
def initialize(**args)
|
26259
26315
|
update!(**args)
|
26260
26316
|
end
|
@@ -26274,6 +26330,7 @@ module Google
|
|
26274
26330
|
@state = args[:state] if args.key?(:state)
|
26275
26331
|
@task_id = args[:task_id] if args.key?(:task_id)
|
26276
26332
|
@task_name = args[:task_name] if args.key?(:task_name)
|
26333
|
+
@task_unique_name = args[:task_unique_name] if args.key?(:task_unique_name)
|
26277
26334
|
end
|
26278
26335
|
end
|
26279
26336
|
|
@@ -27102,6 +27159,12 @@ module Google
|
|
27102
27159
|
# @return [Array<String>]
|
27103
27160
|
attr_accessor :project_allowlist
|
27104
27161
|
|
27162
|
+
# Optional. List of projects and networks where the PSC endpoints will be
|
27163
|
+
# created. This field is used by Online Inference(Prediction) only.
|
27164
|
+
# Corresponds to the JSON property `pscAutomationConfigs`
|
27165
|
+
# @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig>]
|
27166
|
+
attr_accessor :psc_automation_configs
|
27167
|
+
|
27105
27168
|
# Output only. The name of the generated service attachment resource. This is
|
27106
27169
|
# only populated if the endpoint is deployed with PrivateServiceConnect.
|
27107
27170
|
# Corresponds to the JSON property `serviceAttachment`
|
@@ -27117,6 +27180,7 @@ module Google
|
|
27117
27180
|
@enable_private_service_connect = args[:enable_private_service_connect] if args.key?(:enable_private_service_connect)
|
27118
27181
|
@enable_secure_private_service_connect = args[:enable_secure_private_service_connect] if args.key?(:enable_secure_private_service_connect)
|
27119
27182
|
@project_allowlist = args[:project_allowlist] if args.key?(:project_allowlist)
|
27183
|
+
@psc_automation_configs = args[:psc_automation_configs] if args.key?(:psc_automation_configs)
|
27120
27184
|
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
27121
27185
|
end
|
27122
27186
|
end
|
@@ -30864,8 +30928,7 @@ module Google
|
|
30864
30928
|
include Google::Apis::Core::Hashable
|
30865
30929
|
|
30866
30930
|
# Required. The model used to generate memories. Format: `projects/`project`/
|
30867
|
-
# locations/`location`/publishers/google/models/`model
|
30868
|
-
# locations/`location`/endpoints/`endpoint``.
|
30931
|
+
# locations/`location`/publishers/google/models/`model``.
|
30869
30932
|
# Corresponds to the JSON property `model`
|
30870
30933
|
# @return [String]
|
30871
30934
|
attr_accessor :model
|
@@ -30886,7 +30949,7 @@ module Google
|
|
30886
30949
|
|
30887
30950
|
# Required. The model used to generate embeddings to lookup similar memories.
|
30888
30951
|
# Format: `projects/`project`/locations/`location`/publishers/google/models/`
|
30889
|
-
# model
|
30952
|
+
# model``.
|
30890
30953
|
# Corresponds to the JSON property `embeddingModel`
|
30891
30954
|
# @return [String]
|
30892
30955
|
attr_accessor :embedding_model
|
@@ -45585,7 +45648,10 @@ module Google
|
|
45585
45648
|
attr_accessor :endpoint
|
45586
45649
|
|
45587
45650
|
# Output only. The resource name of the TunedModel. Format: `projects/`project`/
|
45588
|
-
# locations/`location`/models/`model
|
45651
|
+
# locations/`location`/models/`model`@`version_id`` When tuning from a base
|
45652
|
+
# model, the version_id will be 1. For continuous tuning, the version id will be
|
45653
|
+
# incremented by 1 from the last version id in the parent model. E.g., `projects/
|
45654
|
+
# `project`/locations/`location`/models/`model`@`last_version_id + 1``
|
45589
45655
|
# Corresponds to the JSON property `model`
|
45590
45656
|
# @return [String]
|
45591
45657
|
attr_accessor :model
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AiplatformV1beta1
|
18
18
|
# Version of the google-apis-aiplatform_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250711"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2308,6 +2308,12 @@ module Google
|
|
2308
2308
|
include Google::Apis::Core::JsonObjectSupport
|
2309
2309
|
end
|
2310
2310
|
|
2311
|
+
class GoogleCloudAiplatformV1beta1FlexStart
|
2312
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2313
|
+
|
2314
|
+
include Google::Apis::Core::JsonObjectSupport
|
2315
|
+
end
|
2316
|
+
|
2311
2317
|
class GoogleCloudAiplatformV1beta1FluencyInput
|
2312
2318
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2313
2319
|
|
@@ -10037,6 +10043,8 @@ module Google
|
|
10037
10043
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10038
10044
|
collection :autoscaling_metric_specs, as: 'autoscalingMetricSpecs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutoscalingMetricSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AutoscalingMetricSpec::Representation
|
10039
10045
|
|
10046
|
+
property :flex_start, as: 'flexStart', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FlexStart, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FlexStart::Representation
|
10047
|
+
|
10040
10048
|
property :machine_spec, as: 'machineSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec::Representation
|
10041
10049
|
|
10042
10050
|
property :max_replica_count, as: 'maxReplicaCount'
|
@@ -10254,6 +10262,7 @@ module Google
|
|
10254
10262
|
property :deployment_group, as: 'deploymentGroup'
|
10255
10263
|
property :display_name, as: 'displayName'
|
10256
10264
|
property :enable_access_logging, as: 'enableAccessLogging'
|
10265
|
+
property :enable_datapoint_upsert_logging, as: 'enableDatapointUpsertLogging'
|
10257
10266
|
property :id, as: 'id'
|
10258
10267
|
property :index, as: 'index'
|
10259
10268
|
property :index_sync_time, as: 'indexSyncTime'
|
@@ -10787,6 +10796,7 @@ module Google
|
|
10787
10796
|
# @private
|
10788
10797
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10789
10798
|
property :branch, as: 'branch'
|
10799
|
+
hash :custom_metadata, as: 'customMetadata'
|
10790
10800
|
property :grounding_metadata, as: 'groundingMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GroundingMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GroundingMetadata::Representation
|
10791
10801
|
|
10792
10802
|
property :interrupted, as: 'interrupted'
|
@@ -12157,6 +12167,13 @@ module Google
|
|
12157
12167
|
end
|
12158
12168
|
end
|
12159
12169
|
|
12170
|
+
class GoogleCloudAiplatformV1beta1FlexStart
|
12171
|
+
# @private
|
12172
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
12173
|
+
property :max_runtime_duration, as: 'maxRuntimeDuration'
|
12174
|
+
end
|
12175
|
+
end
|
12176
|
+
|
12160
12177
|
class GoogleCloudAiplatformV1beta1FluencyInput
|
12161
12178
|
# @private
|
12162
12179
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -15630,6 +15647,7 @@ module Google
|
|
15630
15647
|
property :state, as: 'state'
|
15631
15648
|
property :task_id, :numeric_string => true, as: 'taskId'
|
15632
15649
|
property :task_name, as: 'taskName'
|
15650
|
+
property :task_unique_name, as: 'taskUniqueName'
|
15633
15651
|
end
|
15634
15652
|
end
|
15635
15653
|
|
@@ -15871,6 +15889,8 @@ module Google
|
|
15871
15889
|
property :enable_private_service_connect, as: 'enablePrivateServiceConnect'
|
15872
15890
|
property :enable_secure_private_service_connect, as: 'enableSecurePrivateServiceConnect'
|
15873
15891
|
collection :project_allowlist, as: 'projectAllowlist'
|
15892
|
+
collection :psc_automation_configs, as: 'pscAutomationConfigs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PscAutomationConfig::Representation
|
15893
|
+
|
15874
15894
|
property :service_attachment, as: 'serviceAttachment'
|
15875
15895
|
end
|
15876
15896
|
end
|
@@ -23940,6 +23940,10 @@ module Google
|
|
23940
23940
|
# Required. The resource name of the session to list events from. Format: `
|
23941
23941
|
# projects/`project`/locations/`location`/reasoningEngines/`reasoning_engine`/
|
23942
23942
|
# sessions/`session``
|
23943
|
+
# @param [String] filter
|
23944
|
+
# Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
|
23945
|
+
# `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339
|
23946
|
+
# format) More detail in [AIP-160](https://google.aip.dev/160).
|
23943
23947
|
# @param [Fixnum] page_size
|
23944
23948
|
# Optional. The maximum number of events to return. The service may return fewer
|
23945
23949
|
# than this value. If unspecified, at most 100 events will be returned. These
|
@@ -23964,11 +23968,12 @@ module Google
|
|
23964
23968
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
23965
23969
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
23966
23970
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
23967
|
-
def list_project_location_reasoning_engine_session_events(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23971
|
+
def list_project_location_reasoning_engine_session_events(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
23968
23972
|
command = make_simple_command(:get, 'v1beta1/{+parent}/events', options)
|
23969
23973
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListEventsResponse::Representation
|
23970
23974
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListEventsResponse
|
23971
23975
|
command.params['parent'] = parent unless parent.nil?
|
23976
|
+
command.query['filter'] = filter unless filter.nil?
|
23972
23977
|
command.query['pageSize'] = page_size unless page_size.nil?
|
23973
23978
|
command.query['pageToken'] = page_token unless page_token.nil?
|
23974
23979
|
command.query['fields'] = fields unless fields.nil?
|
@@ -29568,6 +29573,10 @@ module Google
|
|
29568
29573
|
# Required. The resource name of the session to list events from. Format: `
|
29569
29574
|
# projects/`project`/locations/`location`/reasoningEngines/`reasoning_engine`/
|
29570
29575
|
# sessions/`session``
|
29576
|
+
# @param [String] filter
|
29577
|
+
# Optional. The standard list filter. Supported fields: * `timestamp` range (i.e.
|
29578
|
+
# `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339
|
29579
|
+
# format) More detail in [AIP-160](https://google.aip.dev/160).
|
29571
29580
|
# @param [Fixnum] page_size
|
29572
29581
|
# Optional. The maximum number of events to return. The service may return fewer
|
29573
29582
|
# than this value. If unspecified, at most 100 events will be returned. These
|
@@ -29592,11 +29601,12 @@ module Google
|
|
29592
29601
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
29593
29602
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
29594
29603
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
29595
|
-
def list_reasoning_engine_session_events(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29604
|
+
def list_reasoning_engine_session_events(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
29596
29605
|
command = make_simple_command(:get, 'v1beta1/{+parent}/events', options)
|
29597
29606
|
command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListEventsResponse::Representation
|
29598
29607
|
command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListEventsResponse
|
29599
29608
|
command.params['parent'] = parent unless parent.nil?
|
29609
|
+
command.query['filter'] = filter unless filter.nil?
|
29600
29610
|
command.query['pageSize'] = page_size unless page_size.nil?
|
29601
29611
|
command.query['pageToken'] = page_token unless page_token.nil?
|
29602
29612
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
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.54.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.54.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|