google-apis-aiplatform_v1beta1 0.90.0 → 0.91.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6d7242722a5e0670480cea4a193911f48c11ef2162cf52433e66292169843cf4
4
- data.tar.gz: 32af29cf36e2af559a50c1efe551e5236915350355e4fc61aaaf230c9c53f8a0
3
+ metadata.gz: c8cbac20a562e24eb0e05b620cc6c7b600e9b2df60272b6ff64d6c79ca2be115
4
+ data.tar.gz: 5309df58a9e2fe97fa320a74d2989fb0f9d3971051f6c3a83a6562d45a3f6023
5
5
  SHA512:
6
- metadata.gz: dd90549ed8f6d9441f91250bc046bad7ccdaba6c3615413ace8430b3b8a9e8f7085857bdb99e84831a8badec55a6623d094c6977ef81fa0127d26854a9f026cb
7
- data.tar.gz: 1504aab88db06f4d92d781eafb3d035c809263e0feb22c2316a407a35f1bfb58209f31c3a3b91c360309fc624bba63b30d3c71d22a1da021bd3d88b47509c2a0
6
+ metadata.gz: 69213f3a45204e8c5a5f94b1c7ddb87c83254550011f3cad6886681284d345e01f0aba4fbad2a2194cdb49d1b6b0c8661e062b7f8bcc36ecd7561a6f69f4457f
7
+ data.tar.gz: 5fcd0b66ab7c368ca94febbc732bf9e2445a43c9623a8c95d65617bb2d347e9da58effc9806f59cba621dd35e6aa6a82a7a5b7d100bb45e72de329f343b2f9b5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.91.0 (2026-09-20)
4
+
5
+ * Regenerated from discovery document revision 20260912
6
+
3
7
  ### v0.90.0 (2026-09-13)
4
8
 
5
9
  * Regenerated from discovery document revision 20260904
@@ -22,10 +22,56 @@ module Google
22
22
  module Apis
23
23
  module AiplatformV1beta1
24
24
 
25
+ # Experimental response metadata for video generation.
26
+ class CloudAiLargeModelsVisionExperimentsResponse
27
+ include Google::Apis::Core::Hashable
28
+
29
+ # Result metadata from a Pro Edit operation.
30
+ # Corresponds to the JSON property `proEditResult`
31
+ # @return [Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponseProEditResult]
32
+ attr_accessor :pro_edit_result
33
+
34
+ def initialize(**args)
35
+ update!(**args)
36
+ end
37
+
38
+ # Update properties of this object
39
+ def update!(**args)
40
+ @pro_edit_result = args[:pro_edit_result] if args.key?(:pro_edit_result)
41
+ end
42
+ end
43
+
44
+ # Result metadata from a Pro Edit operation.
45
+ class CloudAiLargeModelsVisionExperimentsResponseProEditResult
46
+ include Google::Apis::Core::Hashable
47
+
48
+ # The output structured prompt produced by this edit.
49
+ # Corresponds to the JSON property `structuredPrompt`
50
+ # @return [Hash<String,Object>]
51
+ attr_accessor :structured_prompt
52
+
53
+ def initialize(**args)
54
+ update!(**args)
55
+ end
56
+
57
+ # Update properties of this object
58
+ def update!(**args)
59
+ @structured_prompt = args[:structured_prompt] if args.key?(:structured_prompt)
60
+ end
61
+ end
62
+
25
63
  # Experimental parameters for video generation.
26
64
  class CloudAiLargeModelsVisionGenerateVideoExperiments
27
65
  include Google::Apis::Core::Hashable
28
66
 
67
+ # If false, when a non-subscription customer tries to call an experimental
68
+ # feature, the request will be rejected. This field has no effect for
69
+ # subscription customers.
70
+ # Corresponds to the JSON property `allowMeteredBilling`
71
+ # @return [Boolean]
72
+ attr_accessor :allow_metered_billing
73
+ alias_method :allow_metered_billing?, :allow_metered_billing
74
+
29
75
  # Optional. If true, anchors the last frame in video generation by generating a
30
76
  # custom border mask.
31
77
  # Corresponds to the JSON property `anchorLastFrame`
@@ -109,6 +155,11 @@ module Google
109
155
  # @return [Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsOutpaintConfig]
110
156
  attr_accessor :outpaint_config
111
157
 
158
+ # Configuration for Pro Edit.
159
+ # Corresponds to the JSON property `proEdit`
160
+ # @return [Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig]
161
+ attr_accessor :pro_edit
162
+
112
163
  # "Direct" prompting for Experimental Video Generation. These will be sent
113
164
  # directly to the LDM without being rewritten.
114
165
  # Corresponds to the JSON property `promptInputs`
@@ -169,6 +220,7 @@ module Google
169
220
 
170
221
  # Update properties of this object
171
222
  def update!(**args)
223
+ @allow_metered_billing = args[:allow_metered_billing] if args.key?(:allow_metered_billing)
172
224
  @anchor_last_frame = args[:anchor_last_frame] if args.key?(:anchor_last_frame)
173
225
  @audio_control = args[:audio_control] if args.key?(:audio_control)
174
226
  @cfg_scale = args[:cfg_scale] if args.key?(:cfg_scale)
@@ -184,6 +236,7 @@ module Google
184
236
  @omni_rewriter = args[:omni_rewriter] if args.key?(:omni_rewriter)
185
237
  @original_request_json = args[:original_request_json] if args.key?(:original_request_json)
186
238
  @outpaint_config = args[:outpaint_config] if args.key?(:outpaint_config)
239
+ @pro_edit = args[:pro_edit] if args.key?(:pro_edit)
187
240
  @prompt_inputs = args[:prompt_inputs] if args.key?(:prompt_inputs)
188
241
  @request_origin_tag = args[:request_origin_tag] if args.key?(:request_origin_tag)
189
242
  @scheduling_config = args[:scheduling_config] if args.key?(:scheduling_config)
@@ -355,6 +408,40 @@ module Google
355
408
  end
356
409
  end
357
410
 
411
+ # Configuration for Pro Edit.
412
+ class CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig
413
+ include Google::Apis::Core::Hashable
414
+
415
+ # A text string containing the user's edit instruction. Will be applied to the
416
+ # original URF.
417
+ # Corresponds to the JSON property `editInstructionPrompt`
418
+ # @return [String]
419
+ attr_accessor :edit_instruction_prompt
420
+
421
+ # Required. The operation_id from a previous omni-cine generation whose OF and
422
+ # URF should be retrieved for editing.
423
+ # Corresponds to the JSON property `fromOperationId`
424
+ # @return [String]
425
+ attr_accessor :from_operation_id
426
+
427
+ # A JSON object containing the user's modified URF. The URF Editing Preamble
428
+ # will diff this against the original URF to determine what changed.
429
+ # Corresponds to the JSON property `structuredPrompt`
430
+ # @return [Hash<String,Object>]
431
+ attr_accessor :structured_prompt
432
+
433
+ def initialize(**args)
434
+ update!(**args)
435
+ end
436
+
437
+ # Update properties of this object
438
+ def update!(**args)
439
+ @edit_instruction_prompt = args[:edit_instruction_prompt] if args.key?(:edit_instruction_prompt)
440
+ @from_operation_id = args[:from_operation_id] if args.key?(:from_operation_id)
441
+ @structured_prompt = args[:structured_prompt] if args.key?(:structured_prompt)
442
+ end
443
+ end
444
+
358
445
  # Configuration for spatial alignment.
359
446
  class CloudAiLargeModelsVisionGenerateVideoExperimentsSpatialAlignmentConfig
360
447
  include Google::Apis::Core::Hashable
@@ -592,6 +679,11 @@ module Google
592
679
  # @return [Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperiments]
593
680
  attr_accessor :experiments_metadata
594
681
 
682
+ # Experimental response metadata for video generation.
683
+ # Corresponds to the JSON property `experimentsResponse`
684
+ # @return [Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponse]
685
+ attr_accessor :experiments_response
686
+
595
687
  # Cloud Storage URI where the generated video is written.
596
688
  # Corresponds to the JSON property `gcsUri`
597
689
  # @return [String]
@@ -610,6 +702,7 @@ module Google
610
702
  def update!(**args)
611
703
  @bytes_base64_encoded = args[:bytes_base64_encoded] if args.key?(:bytes_base64_encoded)
612
704
  @experiments_metadata = args[:experiments_metadata] if args.key?(:experiments_metadata)
705
+ @experiments_response = args[:experiments_response] if args.key?(:experiments_response)
613
706
  @gcs_uri = args[:gcs_uri] if args.key?(:gcs_uri)
614
707
  @mime_type = args[:mime_type] if args.key?(:mime_type)
615
708
  end
@@ -6148,7 +6241,7 @@ module Google
6148
6241
 
6149
6242
  # Optional. Arbitrary data content.
6150
6243
  # Corresponds to the JSON property `data`
6151
- # @return [Hash<String,Object>]
6244
+ # @return [Object]
6152
6245
  attr_accessor :data
6153
6246
 
6154
6247
  # Optional. The name of the file, when the part represents a file.
@@ -7418,6 +7511,11 @@ module Google
7418
7511
  # @return [String]
7419
7512
  attr_accessor :object
7420
7513
 
7514
+ # Observability settings for one agent's sessions.
7515
+ # Corresponds to the JSON property `observabilityConfig`
7516
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ObservabilityConfig]
7517
+ attr_accessor :observability_config
7518
+
7421
7519
  # Optional. The instructions for the agent to follow. These instructions are
7422
7520
  # passed to the LLM as a system instruction.
7423
7521
  # Corresponds to the JSON property `system_instruction`
@@ -7448,6 +7546,7 @@ module Google
7448
7546
  @metadata = args[:metadata] if args.key?(:metadata)
7449
7547
  @name = args[:name] if args.key?(:name)
7450
7548
  @object = args[:object] if args.key?(:object)
7549
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
7451
7550
  @system_instruction = args[:system_instruction] if args.key?(:system_instruction)
7452
7551
  @tools = args[:tools] if args.key?(:tools)
7453
7552
  @updated = args[:updated] if args.key?(:updated)
@@ -41124,6 +41223,39 @@ module Google
41124
41223
  end
41125
41224
  end
41126
41225
 
41226
+ # Observability settings for one agent's sessions.
41227
+ class GoogleCloudAiplatformV1beta1ObservabilityConfig
41228
+ include Google::Apis::Core::Hashable
41229
+
41230
+ # Optional. Enables observability for this agent's sessions: OpenTelemetry span
41231
+ # emission covering tool names, model names, token counts, latencies and status.
41232
+ # If `false`, the other fields here are ignored.
41233
+ # Corresponds to the JSON property `observabilityEnabled`
41234
+ # @return [Boolean]
41235
+ attr_accessor :observability_enabled
41236
+ alias_method :observability_enabled?, :observability_enabled
41237
+
41238
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
41239
+ # content (prompts, model completions, tool argument payloads and tool responses)
41240
+ # . If `false`, those are sanitized and only structural attributes are recorded.
41241
+ # No effect unless `observability_enabled` is true. Not yet enforced: `
41242
+ # CreateAgent` and `UpdateAgent` currently reject setting this to `true`.
41243
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
41244
+ # @return [Boolean]
41245
+ attr_accessor :sensitive_logging_enabled
41246
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
41247
+
41248
+ def initialize(**args)
41249
+ update!(**args)
41250
+ end
41251
+
41252
+ # Update properties of this object
41253
+ def update!(**args)
41254
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
41255
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
41256
+ end
41257
+ end
41258
+
41127
41259
  # An OnlineEvaluator contains the configuration for an Online Evaluation.
41128
41260
  class GoogleCloudAiplatformV1beta1OnlineEvaluator
41129
41261
  include Google::Apis::Core::Hashable
@@ -48266,6 +48398,11 @@ module Google
48266
48398
  # @return [String]
48267
48399
  attr_accessor :name
48268
48400
 
48401
+ # Configures garbage collection of Runtime Revisions.
48402
+ # Corresponds to the JSON property `revisionGarbageCollectionStrategy`
48403
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy]
48404
+ attr_accessor :revision_garbage_collection_strategy
48405
+
48269
48406
  # ReasoningEngine configurations
48270
48407
  # Corresponds to the JSON property `spec`
48271
48408
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec]
@@ -48295,6 +48432,7 @@ module Google
48295
48432
  @etag = args[:etag] if args.key?(:etag)
48296
48433
  @labels = args[:labels] if args.key?(:labels)
48297
48434
  @name = args[:name] if args.key?(:name)
48435
+ @revision_garbage_collection_strategy = args[:revision_garbage_collection_strategy] if args.key?(:revision_garbage_collection_strategy)
48298
48436
  @spec = args[:spec] if args.key?(:spec)
48299
48437
  @traffic_config = args[:traffic_config] if args.key?(:traffic_config)
48300
48438
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -48493,6 +48631,51 @@ module Google
48493
48631
  end
48494
48632
  end
48495
48633
 
48634
+ # Configures garbage collection of Runtime Revisions.
48635
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy
48636
+ include Google::Apis::Core::Hashable
48637
+
48638
+ # Keeps only the latest N Runtime Revisions active.
48639
+ # Corresponds to the JSON property `keepNLatest`
48640
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest]
48641
+ attr_accessor :keep_n_latest
48642
+
48643
+ def initialize(**args)
48644
+ update!(**args)
48645
+ end
48646
+
48647
+ # Update properties of this object
48648
+ def update!(**args)
48649
+ @keep_n_latest = args[:keep_n_latest] if args.key?(:keep_n_latest)
48650
+ end
48651
+ end
48652
+
48653
+ # Keeps only the latest N Runtime Revisions active.
48654
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest
48655
+ include Google::Apis::Core::Hashable
48656
+
48657
+ # Required. Specifies the maximum number of Runtime Revisions to keep active. If
48658
+ # an update to Reasoning Engine would result in exceeding this number of active
48659
+ # Runtime Revisions, a new Runtime Revision will be created, while the oldest
48660
+ # Runtime Revision will be automatically deleted, providing it's not configured
48661
+ # to serve traffic via `traffic_config`. If the oldest Runtime Revision is
48662
+ # configured to serve traffic, the update will fail validation. No changes will
48663
+ # be made to the Reasoning Engine, existing Runtime Revisions, and no new
48664
+ # Runtime Revision will be created.
48665
+ # Corresponds to the JSON property `maxRevisions`
48666
+ # @return [Fixnum]
48667
+ attr_accessor :max_revisions
48668
+
48669
+ def initialize(**args)
48670
+ update!(**args)
48671
+ end
48672
+
48673
+ # Update properties of this object
48674
+ def update!(**args)
48675
+ @max_revisions = args[:max_revisions] if args.key?(:max_revisions)
48676
+ end
48677
+ end
48678
+
48496
48679
  # ReasoningEngineRuntimeRevision is a specific version of the runtime related
48497
48680
  # part of ReasoningEngine. Contains only the fields that are revision specific.
48498
48681
  class GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
@@ -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.90.0"
19
+ GEM_VERSION = "0.91.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260904"
25
+ REVISION = "20260912"
26
26
  end
27
27
  end
28
28
  end
@@ -22,6 +22,18 @@ module Google
22
22
  module Apis
23
23
  module AiplatformV1beta1
24
24
 
25
+ class CloudAiLargeModelsVisionExperimentsResponse
26
+ class Representation < Google::Apis::Core::JsonRepresentation; end
27
+
28
+ include Google::Apis::Core::JsonObjectSupport
29
+ end
30
+
31
+ class CloudAiLargeModelsVisionExperimentsResponseProEditResult
32
+ class Representation < Google::Apis::Core::JsonRepresentation; end
33
+
34
+ include Google::Apis::Core::JsonObjectSupport
35
+ end
36
+
25
37
  class CloudAiLargeModelsVisionGenerateVideoExperiments
26
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
27
39
 
@@ -64,6 +76,12 @@ module Google
64
76
  include Google::Apis::Core::JsonObjectSupport
65
77
  end
66
78
 
79
+ class CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig
80
+ class Representation < Google::Apis::Core::JsonRepresentation; end
81
+
82
+ include Google::Apis::Core::JsonObjectSupport
83
+ end
84
+
67
85
  class CloudAiLargeModelsVisionGenerateVideoExperimentsSpatialAlignmentConfig
68
86
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
87
 
@@ -6796,6 +6814,12 @@ module Google
6796
6814
  include Google::Apis::Core::JsonObjectSupport
6797
6815
  end
6798
6816
 
6817
+ class GoogleCloudAiplatformV1beta1ObservabilityConfig
6818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
6819
+
6820
+ include Google::Apis::Core::JsonObjectSupport
6821
+ end
6822
+
6799
6823
  class GoogleCloudAiplatformV1beta1OnlineEvaluator
6800
6824
  class Representation < Google::Apis::Core::JsonRepresentation; end
6801
6825
 
@@ -8086,6 +8110,18 @@ module Google
8086
8110
  include Google::Apis::Core::JsonObjectSupport
8087
8111
  end
8088
8112
 
8113
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy
8114
+ class Representation < Google::Apis::Core::JsonRepresentation; end
8115
+
8116
+ include Google::Apis::Core::JsonObjectSupport
8117
+ end
8118
+
8119
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest
8120
+ class Representation < Google::Apis::Core::JsonRepresentation; end
8121
+
8122
+ include Google::Apis::Core::JsonObjectSupport
8123
+ end
8124
+
8089
8125
  class GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
8090
8126
  class Representation < Google::Apis::Core::JsonRepresentation; end
8091
8127
 
@@ -11890,9 +11926,25 @@ module Google
11890
11926
  include Google::Apis::Core::JsonObjectSupport
11891
11927
  end
11892
11928
 
11929
+ class CloudAiLargeModelsVisionExperimentsResponse
11930
+ # @private
11931
+ class Representation < Google::Apis::Core::JsonRepresentation
11932
+ property :pro_edit_result, as: 'proEditResult', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponseProEditResult, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponseProEditResult::Representation
11933
+
11934
+ end
11935
+ end
11936
+
11937
+ class CloudAiLargeModelsVisionExperimentsResponseProEditResult
11938
+ # @private
11939
+ class Representation < Google::Apis::Core::JsonRepresentation
11940
+ hash :structured_prompt, as: 'structuredPrompt'
11941
+ end
11942
+ end
11943
+
11893
11944
  class CloudAiLargeModelsVisionGenerateVideoExperiments
11894
11945
  # @private
11895
11946
  class Representation < Google::Apis::Core::JsonRepresentation
11947
+ property :allow_metered_billing, as: 'allowMeteredBilling'
11896
11948
  property :anchor_last_frame, as: 'anchorLastFrame'
11897
11949
  property :audio_control, as: 'audioControl', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsAudioControlConfig, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsAudioControlConfig::Representation
11898
11950
 
@@ -11914,6 +11966,8 @@ module Google
11914
11966
  property :original_request_json, as: 'originalRequestJson'
11915
11967
  property :outpaint_config, as: 'outpaintConfig', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsOutpaintConfig, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsOutpaintConfig::Representation
11916
11968
 
11969
+ property :pro_edit, as: 'proEdit', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig::Representation
11970
+
11917
11971
  property :prompt_inputs, as: 'promptInputs', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionPromptInputs, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionPromptInputs::Representation
11918
11972
 
11919
11973
  property :request_origin_tag, as: 'requestOriginTag'
@@ -11982,6 +12036,15 @@ module Google
11982
12036
  end
11983
12037
  end
11984
12038
 
12039
+ class CloudAiLargeModelsVisionGenerateVideoExperimentsProEditConfig
12040
+ # @private
12041
+ class Representation < Google::Apis::Core::JsonRepresentation
12042
+ property :edit_instruction_prompt, as: 'editInstructionPrompt'
12043
+ property :from_operation_id, as: 'fromOperationId'
12044
+ hash :structured_prompt, as: 'structuredPrompt'
12045
+ end
12046
+ end
12047
+
11985
12048
  class CloudAiLargeModelsVisionGenerateVideoExperimentsSpatialAlignmentConfig
11986
12049
  # @private
11987
12050
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12055,6 +12118,8 @@ module Google
12055
12118
  property :bytes_base64_encoded, as: 'bytesBase64Encoded'
12056
12119
  property :experiments_metadata, as: 'experimentsMetadata', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperiments, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionGenerateVideoExperiments::Representation
12057
12120
 
12121
+ property :experiments_response, as: 'experimentsResponse', class: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponse, decorator: Google::Apis::AiplatformV1beta1::CloudAiLargeModelsVisionExperimentsResponse::Representation
12122
+
12058
12123
  property :gcs_uri, as: 'gcsUri'
12059
12124
  property :mime_type, as: 'mimeType'
12060
12125
  end
@@ -13809,7 +13874,7 @@ module Google
13809
13874
  class GoogleCloudAiplatformV1beta1A2APart
13810
13875
  # @private
13811
13876
  class Representation < Google::Apis::Core::JsonRepresentation
13812
- hash :data, as: 'data'
13877
+ property :data, as: 'data'
13813
13878
  property :filename, as: 'filename'
13814
13879
  property :media_type, as: 'mediaType'
13815
13880
  hash :metadata, as: 'metadata'
@@ -14172,6 +14237,8 @@ module Google
14172
14237
  hash :metadata, as: 'metadata'
14173
14238
  property :name, as: 'name'
14174
14239
  property :object, as: 'object'
14240
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ObservabilityConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ObservabilityConfig::Representation
14241
+
14175
14242
  property :system_instruction, as: 'system_instruction'
14176
14243
  collection :tools, as: 'tools', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AgentTool, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AgentTool::Representation
14177
14244
 
@@ -23771,6 +23838,14 @@ module Google
23771
23838
  end
23772
23839
  end
23773
23840
 
23841
+ class GoogleCloudAiplatformV1beta1ObservabilityConfig
23842
+ # @private
23843
+ class Representation < Google::Apis::Core::JsonRepresentation
23844
+ property :observability_enabled, as: 'observabilityEnabled'
23845
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
23846
+ end
23847
+ end
23848
+
23774
23849
  class GoogleCloudAiplatformV1beta1OnlineEvaluator
23775
23850
  # @private
23776
23851
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -25885,6 +25960,8 @@ module Google
25885
25960
  property :etag, as: 'etag'
25886
25961
  hash :labels, as: 'labels'
25887
25962
  property :name, as: 'name'
25963
+ property :revision_garbage_collection_strategy, as: 'revisionGarbageCollectionStrategy', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy::Representation
25964
+
25888
25965
  property :spec, as: 'spec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpec::Representation
25889
25966
 
25890
25967
  property :traffic_config, as: 'trafficConfig', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineTrafficConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineTrafficConfig::Representation
@@ -25953,6 +26030,21 @@ module Google
25953
26030
  end
25954
26031
  end
25955
26032
 
26033
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategy
26034
+ # @private
26035
+ class Representation < Google::Apis::Core::JsonRepresentation
26036
+ property :keep_n_latest, as: 'keepNLatest', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest::Representation
26037
+
26038
+ end
26039
+ end
26040
+
26041
+ class GoogleCloudAiplatformV1beta1ReasoningEngineRevisionGarbageCollectionStrategyKeepNLatest
26042
+ # @private
26043
+ class Representation < Google::Apis::Core::JsonRepresentation
26044
+ property :max_revisions, as: 'maxRevisions'
26045
+ end
26046
+ end
26047
+
25956
26048
  class GoogleCloudAiplatformV1beta1ReasoningEngineRuntimeRevision
25957
26049
  # @private
25958
26050
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11730,10 +11730,10 @@ module Google
11730
11730
  # Request-specific options
11731
11731
  #
11732
11732
  # @yield [result, err] Result & error if block supplied
11733
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Agent] parsed result object
11733
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
11734
11734
  # @yieldparam err [StandardError] error object if request failed
11735
11735
  #
11736
- # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Agent]
11736
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
11737
11737
  #
11738
11738
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11739
11739
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
@@ -11742,8 +11742,8 @@ module Google
11742
11742
  command = make_simple_command(:patch, 'v1beta1/{+name}', options)
11743
11743
  command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Agent::Representation
11744
11744
  command.request_object = google_cloud_aiplatform_v1beta1_agent_object
11745
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Agent::Representation
11746
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Agent
11745
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
11746
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
11747
11747
  command.params['name'] = name unless name.nil?
11748
11748
  command.query['updateMask'] = update_mask unless update_mask.nil?
11749
11749
  command.query['fields'] = fields unless fields.nil?
@@ -32031,28 +32031,33 @@ module Google
32031
32031
  # @param [String] filter
32032
32032
  # Optional. Filter expression restricting which AnalyzedSessions are returned.
32033
32033
  # Supports a subset of AIP-160: a closed `detection_time` window (both bounds
32034
- # required), an equality on `severity`, and an equality on `agent_type`, joined
32035
- # by `AND`. Each clause is optional, may appear at most once, and may appear in
32036
- # any order. The `severity` value is the **canonical** `Severity` enum name -- `
32037
- # SEVERITY_CRITICAL`, `SEVERITY_HIGH`, `SEVERITY_MEDIUM` or `SEVERITY_LOW`.
32038
- # Short forms such as `"CRITICAL"` are rejected, as is `SEVERITY_UNSPECIFIED`.
32039
- # It matches sessions whose *maximum* severity equals that bucket: a session
32040
- # that fires at both LOW and CRITICAL matches `severity = "SEVERITY_CRITICAL"`,
32041
- # not `severity = "SEVERITY_LOW"`. The `agent_type` value is the canonical `
32042
- # AgentResource.AgentType` enum name -- `REASONING_ENGINE`, `CLOUD_RUN_SERVICE`,
32043
- # `GKE_WORKLOAD`, `GCE_INSTANCE`, `AGENT_TYPE_OTHER` or `AGENT_TYPE_UNSPECIFIED`
32044
- # -- and matches sessions run by an agent on that runtime. Unlike `severity`, `
32045
- # agent_type` accepts its `UNSPECIFIED` value. The two are not analogous: a
32046
- # session always has a computed severity bucket, so `SEVERITY_UNSPECIFIED` is
32047
- # never returned and filtering on it could only match nothing. `
32048
- # AGENT_TYPE_UNSPECIFIED` *is* returned -- it is what `AnalyzedSession.
32049
- # agent_type` reports for an agent whose runtime was never recorded -- so it
32050
- # must remain filterable. Example (time window, severity and runtime): ```
32051
- # detection_time >= "2024-01-01T00:00:00Z" AND detection_time <= "2024-01-08T00:
32052
- # 00:00Z" AND severity = "SEVERITY_CRITICAL" AND agent_type = "CLOUD_RUN_SERVICE"
32053
- # ``` If empty, results are restricted to the last 7 days with no severity or
32054
- # runtime restriction. Other fields, additional operators, set membership (`IN`),
32055
- # and boolean combinations (`OR`, `NOT`, parentheses) are not yet supported.
32034
+ # required), an equality on `severity`, an equality on `agent_type`, and an
32035
+ # equality on `session_id`, joined by `AND`. Each clause is optional, may appear
32036
+ # at most once, and may appear in any order. The `severity` value is the **
32037
+ # canonical** `Severity` enum name -- `SEVERITY_CRITICAL`, `SEVERITY_HIGH`, `
32038
+ # SEVERITY_MEDIUM` or `SEVERITY_LOW`. Short forms such as `"CRITICAL"` are
32039
+ # rejected, as is `SEVERITY_UNSPECIFIED`. It matches sessions whose *maximum*
32040
+ # severity equals that bucket: a session that fires at both LOW and CRITICAL
32041
+ # matches `severity = "SEVERITY_CRITICAL"`, not `severity = "SEVERITY_LOW"`. The
32042
+ # `agent_type` value is the canonical `AgentResource.AgentType` enum name -- `
32043
+ # REASONING_ENGINE`, `CLOUD_RUN_SERVICE`, `GKE_WORKLOAD`, `GCE_INSTANCE`, `
32044
+ # AGENT_TYPE_OTHER` or `AGENT_TYPE_UNSPECIFIED` -- and matches sessions run by
32045
+ # an agent on that runtime. Unlike `severity`, `agent_type` accepts its `
32046
+ # UNSPECIFIED` value. The two are not analogous: a session always has a computed
32047
+ # severity bucket, so `SEVERITY_UNSPECIFIED` is never returned and filtering on
32048
+ # it could only match nothing. `AGENT_TYPE_UNSPECIFIED` *is* returned -- it is
32049
+ # what `AnalyzedSession.agent_type` reports for an agent whose runtime was never
32050
+ # recorded -- so it must remain filterable. The `session_id` value is a case-
32051
+ # sensitive exact match (no substring or prefix matching) on `AnalyzedSession.
32052
+ # session_id`. Unlike `severity` and `agent_type` it is not a closed enum, so
32053
+ # any non-empty value is accepted; an empty value (`session_id = ""`) is
32054
+ # rejected rather than treated as "no filter". Example (time window, severity
32055
+ # and runtime): ``` detection_time >= "2024-01-01T00:00:00Z" AND detection_time <
32056
+ # = "2024-01-08T00:00:00Z" AND severity = "SEVERITY_CRITICAL" AND agent_type = "
32057
+ # CLOUD_RUN_SERVICE" ``` If empty, results are restricted to the last 7 days
32058
+ # with no severity, runtime, or session restriction. Other fields, additional
32059
+ # operators, set membership (`IN`), and boolean combinations (`OR`, `NOT`,
32060
+ # parentheses) are not yet supported.
32056
32061
  # @param [String] order_by
32057
32062
  # Optional. Comma-separated list of fields to sort by, following AIP-132 syntax.
32058
32063
  # The default sort direction is ascending; append " desc" to a field to sort
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.90.0
4
+ version: 0.91.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.91.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: