google-apis-aiplatform_v1beta1 0.82.0 → 0.83.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: 1cd7e06cb7bece64aa676a6e2eec3c80e50b0bdfff24bd84aadad56940ce635d
4
- data.tar.gz: 408c0c53b371c2fa0808298b534405103a7a220c7e78a9d293c3f276f697d776
3
+ metadata.gz: 1098ac8cf497ee30a3b6f675999083ba19a4606c36ab9fc4dfb92fc916df7221
4
+ data.tar.gz: 5a9c63f2652e4dcd194202849da982b6b4449ae4d445018b74458ccf15a2ee1b
5
5
  SHA512:
6
- metadata.gz: 746fa64ebe34b52f34119cfb10f3f92eac21170a2538122afd5521a96d8ff92b724339789d45d17f06ac4962c9108733cea9f08964176aeb14fd182341edb3e0
7
- data.tar.gz: 82520f455058654a44b13f3547e71af02192efd79d9fc87dfd3a8bd574c0dc7ec0986f1e391f5b26a61c77d2b4952dc88da74ed505f0f470d31a82cd61ba4d96
6
+ metadata.gz: 9538376dd1ef9e236aaadb3c667b2d9fd8de37ea18dc9340b783f719fcea633b71df42a97ba8e3aad56cb23f22cf70d62d4182275e17fc8fddb17ddd72185f71
7
+ data.tar.gz: 5c986ee64127eec44e51f74d793e24f03f25186b7fa99d4d6c779e3f4b8cf3b60ff18f898fd8e8e8de8b18157654c26dea7b42308cfe8f17322c0ad0b5639ceb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.83.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260623
6
+
3
7
  ### v0.82.0 (2026-06-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20260617
@@ -869,11 +869,6 @@ module Google
869
869
  # @return [String]
870
870
  attr_accessor :agent
871
871
 
872
- # Configuration for the CodeMender agent.
873
- # Corresponds to the JSON property `code_mender_config`
874
- # @return [Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfig]
875
- attr_accessor :code_mender_config
876
-
877
872
  # Configuration for the Deep Research agent.
878
873
  # Corresponds to the JSON property `deepResearchConfig`
879
874
  # @return [Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DeepResearchAgentConfig]
@@ -891,7 +886,6 @@ module Google
891
886
  # Update properties of this object
892
887
  def update!(**args)
893
888
  @agent = args[:agent] if args.key?(:agent)
894
- @code_mender_config = args[:code_mender_config] if args.key?(:code_mender_config)
895
889
  @deep_research_config = args[:deep_research_config] if args.key?(:deep_research_config)
896
890
  @dynamic_config = args[:dynamic_config] if args.key?(:dynamic_config)
897
891
  end
@@ -1271,186 +1265,16 @@ module Google
1271
1265
  end
1272
1266
  end
1273
1267
 
1274
- # Configuration for the CodeMender agent.
1275
- class GenaiVertexV1beta1CodeMenderAgentConfig
1276
- include Google::Apis::Core::Hashable
1277
-
1278
- # Request parameters specific to FIND sessions, used for discovering
1279
- # vulnerabilities in a codebase.
1280
- # Corresponds to the JSON property `find_request`
1281
- # @return [Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFindRequest]
1282
- attr_accessor :find_request
1283
-
1284
- # Request parameters specific to FIX sessions, used for generating and
1285
- # validating security patches.
1286
- # Corresponds to the JSON property `fix_request`
1287
- # @return [Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFixRequest]
1288
- attr_accessor :fix_request
1289
-
1290
- # The name of the model to use for the CodeMender agent. One CodeMender session
1291
- # will only use one model.
1292
- # Corresponds to the JSON property `model`
1293
- # @return [String]
1294
- attr_accessor :model
1295
-
1296
- # The configuration of CodeMender sessions.
1297
- # Corresponds to the JSON property `session_config`
1298
- # @return [Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig]
1299
- attr_accessor :session_config
1300
-
1301
- # Parameter for grouping multiple interactions that belong to the same
1302
- # CodeMender session.
1303
- # Corresponds to the JSON property `session_id`
1304
- # @return [String]
1305
- attr_accessor :session_id
1306
-
1307
- def initialize(**args)
1308
- update!(**args)
1309
- end
1310
-
1311
- # Update properties of this object
1312
- def update!(**args)
1313
- @find_request = args[:find_request] if args.key?(:find_request)
1314
- @fix_request = args[:fix_request] if args.key?(:fix_request)
1315
- @model = args[:model] if args.key?(:model)
1316
- @session_config = args[:session_config] if args.key?(:session_config)
1317
- @session_id = args[:session_id] if args.key?(:session_id)
1318
- end
1319
- end
1320
-
1321
- # Content of a single file in the codebase.
1322
- class GenaiVertexV1beta1CodeMenderAgentConfigFileContent
1323
- include Google::Apis::Core::Hashable
1324
-
1325
- # The UTF-8 encoded text content of the file.
1326
- # Corresponds to the JSON property `content`
1327
- # @return [String]
1328
- attr_accessor :content
1329
-
1330
- # The relative path of the file from the project root.
1331
- # Corresponds to the JSON property `path`
1332
- # @return [String]
1333
- attr_accessor :path
1334
-
1335
- def initialize(**args)
1336
- update!(**args)
1337
- end
1338
-
1339
- # Update properties of this object
1340
- def update!(**args)
1341
- @content = args[:content] if args.key?(:content)
1342
- @path = args[:path] if args.key?(:path)
1343
- end
1344
- end
1345
-
1346
- # Request parameters specific to FIND sessions, used for discovering
1347
- # vulnerabilities in a codebase.
1348
- class GenaiVertexV1beta1CodeMenderAgentConfigFindRequest
1349
- include Google::Apis::Core::Hashable
1350
-
1351
- # Additional context or custom instructions provided by the user to guide the
1352
- # vulnerability analysis.
1353
- # Corresponds to the JSON property `description`
1354
- # @return [String]
1355
- attr_accessor :description
1356
-
1357
- # The identifier of a specific finding to verify. This is primarily used in
1358
- # VERIFY mode to focus the agent's execution-based validation on a single
1359
- # vulnerability.
1360
- # Corresponds to the JSON property `finding_id`
1361
- # @return [String]
1362
- attr_accessor :finding_id
1363
-
1364
- # A list of source files to provide as context for the scan.
1365
- # Corresponds to the JSON property `source_files`
1366
- # @return [Array<Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent>]
1367
- attr_accessor :source_files
1368
-
1369
- def initialize(**args)
1370
- update!(**args)
1371
- end
1372
-
1373
- # Update properties of this object
1374
- def update!(**args)
1375
- @description = args[:description] if args.key?(:description)
1376
- @finding_id = args[:finding_id] if args.key?(:finding_id)
1377
- @source_files = args[:source_files] if args.key?(:source_files)
1378
- end
1379
- end
1380
-
1381
- # Request parameters specific to FIX sessions, used for generating and
1382
- # validating security patches.
1383
- class GenaiVertexV1beta1CodeMenderAgentConfigFixRequest
1384
- include Google::Apis::Core::Hashable
1385
-
1386
- # Additional context or custom instructions provided by the user to guide the
1387
- # patch generation process.
1388
- # Corresponds to the JSON property `description`
1389
- # @return [String]
1390
- attr_accessor :description
1391
-
1392
- # The identifier of the specific security finding to be remediated. This ID maps
1393
- # to a previously discovered vulnerability.
1394
- # Corresponds to the JSON property `finding_id`
1395
- # @return [String]
1396
- attr_accessor :finding_id
1397
-
1398
- # A list of source files providing context for the remediation. These files are
1399
- # typically the ones containing the identified vulnerability.
1400
- # Corresponds to the JSON property `source_files`
1401
- # @return [Array<Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent>]
1402
- attr_accessor :source_files
1403
-
1404
- def initialize(**args)
1405
- update!(**args)
1406
- end
1407
-
1408
- # Update properties of this object
1409
- def update!(**args)
1410
- @description = args[:description] if args.key?(:description)
1411
- @finding_id = args[:finding_id] if args.key?(:finding_id)
1412
- @source_files = args[:source_files] if args.key?(:source_files)
1413
- end
1414
- end
1415
-
1416
- # The configuration of CodeMender sessions.
1417
- class GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig
1418
- include Google::Apis::Core::Hashable
1419
-
1420
- # The maximum number of interaction rounds the agent is allowed to perform
1421
- # before reaching a timeout.
1422
- # Corresponds to the JSON property `max_rounds`
1423
- # @return [Fixnum]
1424
- attr_accessor :max_rounds
1425
-
1426
- # The pipeline mode of a CodeMender session. It can only be used for a find
1427
- # session.
1428
- # Corresponds to the JSON property `pipeline_mode`
1429
- # @return [String]
1430
- attr_accessor :pipeline_mode
1431
-
1432
- # The cognitive architecture or "thinking" topology used by the agent (e.g. "
1433
- # default", "deep").
1434
- # Corresponds to the JSON property `topology`
1435
- # @return [String]
1436
- attr_accessor :topology
1437
-
1438
- def initialize(**args)
1439
- update!(**args)
1440
- end
1441
-
1442
- # Update properties of this object
1443
- def update!(**args)
1444
- @max_rounds = args[:max_rounds] if args.key?(:max_rounds)
1445
- @pipeline_mode = args[:pipeline_mode] if args.key?(:pipeline_mode)
1446
- @topology = args[:topology] if args.key?(:topology)
1447
- end
1448
- end
1449
-
1450
1268
  # A tool that can be used by the model to interact with the computer.
1451
1269
  class GenaiVertexV1beta1ComputerUse
1452
1270
  include Google::Apis::Core::Hashable
1453
1271
 
1272
+ # Whether enable the prompt injection detection check on computer-use request.
1273
+ # Corresponds to the JSON property `enablePromptInjectionDetection`
1274
+ # @return [Boolean]
1275
+ attr_accessor :enable_prompt_injection_detection
1276
+ alias_method :enable_prompt_injection_detection?, :enable_prompt_injection_detection
1277
+
1454
1278
  # The environment being operated.
1455
1279
  # Corresponds to the JSON property `environment`
1456
1280
  # @return [String]
@@ -1467,6 +1291,7 @@ module Google
1467
1291
 
1468
1292
  # Update properties of this object
1469
1293
  def update!(**args)
1294
+ @enable_prompt_injection_detection = args[:enable_prompt_injection_detection] if args.key?(:enable_prompt_injection_detection)
1470
1295
  @environment = args[:environment] if args.key?(:environment)
1471
1296
  @excluded_predefined_functions = args[:excluded_predefined_functions] if args.key?(:excluded_predefined_functions)
1472
1297
  end
@@ -6665,15 +6490,6 @@ module Google
6665
6490
  class GoogleCloudAiplatformV1beta1AgentAnomalyDetectionScope
6666
6491
  include Google::Apis::Core::Hashable
6667
6492
 
6668
- # Optional. When true, agents created in Agent Engine that share log and
6669
- # observability buckets with this scope are automatically enrolled as
6670
- # MonitoredAgents. When false, agents must be enrolled explicitly via
6671
- # MonitoredAgent operations.
6672
- # Corresponds to the JSON property `autoEnroll`
6673
- # @return [Boolean]
6674
- attr_accessor :auto_enroll
6675
- alias_method :auto_enroll?, :auto_enroll
6676
-
6677
6493
  # Optional. User provided display name of the AgentAnomalyDetectionScope.
6678
6494
  # Corresponds to the JSON property `displayName`
6679
6495
  # @return [String]
@@ -6699,17 +6515,23 @@ module Google
6699
6515
  # @return [Array<String>]
6700
6516
  attr_accessor :observability_buckets
6701
6517
 
6518
+ # Output only. The lifecycle state of the scope. See `State` for the semantics
6519
+ # of each value.
6520
+ # Corresponds to the JSON property `state`
6521
+ # @return [String]
6522
+ attr_accessor :state
6523
+
6702
6524
  def initialize(**args)
6703
6525
  update!(**args)
6704
6526
  end
6705
6527
 
6706
6528
  # Update properties of this object
6707
6529
  def update!(**args)
6708
- @auto_enroll = args[:auto_enroll] if args.key?(:auto_enroll)
6709
6530
  @display_name = args[:display_name] if args.key?(:display_name)
6710
6531
  @log_buckets = args[:log_buckets] if args.key?(:log_buckets)
6711
6532
  @name = args[:name] if args.key?(:name)
6712
6533
  @observability_buckets = args[:observability_buckets] if args.key?(:observability_buckets)
6534
+ @state = args[:state] if args.key?(:state)
6713
6535
  end
6714
6536
  end
6715
6537
 
@@ -58191,15 +58013,6 @@ module Google
58191
58013
  # @return [String]
58192
58014
  attr_accessor :state
58193
58015
 
58194
- # Optional. The project where network, subnetwork and dns resources are located.
58195
- # If not provided, it is assumed to be the same project of
58196
- # SemanticGovernancePolicyEngine. This field is for Shared VPC scenarios, where
58197
- # network resources may be in a target project and SGP engine in a service
58198
- # project.
58199
- # Corresponds to the JSON property `targetProject`
58200
- # @return [String]
58201
- attr_accessor :target_project
58202
-
58203
58016
  # Output only. Timestamp when this SemanticGovernancePolicyEngine was last
58204
58017
  # updated.
58205
58018
  # Corresponds to the JSON property `updateTime`
@@ -58219,7 +58032,6 @@ module Google
58219
58032
  @psc_forwarding_rule = args[:psc_forwarding_rule] if args.key?(:psc_forwarding_rule)
58220
58033
  @psc_service_attachment = args[:psc_service_attachment] if args.key?(:psc_service_attachment)
58221
58034
  @state = args[:state] if args.key?(:state)
58222
- @target_project = args[:target_project] if args.key?(:target_project)
58223
58035
  @update_time = args[:update_time] if args.key?(:update_time)
58224
58036
  end
58225
58037
  end
@@ -63125,6 +62937,15 @@ module Google
63125
62937
  # @return [Hash<String,Object>]
63126
62938
  attr_accessor :custom_configs
63127
62939
 
62940
+ # Optional. Instructs Vertex Grounding to use Parallel's Zero Data Retention
62941
+ # Marketplace product. If this value is "false" or omitted, the Parallel Web
62942
+ # Search for Grounding standard subscription will be used. If this value is "
62943
+ # true", the Parallel Web Search for Grounding - ZDR subscription will be used.
62944
+ # Corresponds to the JSON property `enableDataRetention`
62945
+ # @return [Boolean]
62946
+ attr_accessor :enable_data_retention
62947
+ alias_method :enable_data_retention?, :enable_data_retention
62948
+
63128
62949
  def initialize(**args)
63129
62950
  update!(**args)
63130
62951
  end
@@ -63133,6 +62954,7 @@ module Google
63133
62954
  def update!(**args)
63134
62955
  @api_key = args[:api_key] if args.key?(:api_key)
63135
62956
  @custom_configs = args[:custom_configs] if args.key?(:custom_configs)
62957
+ @enable_data_retention = args[:enable_data_retention] if args.key?(:enable_data_retention)
63136
62958
  end
63137
62959
  end
63138
62960
 
@@ -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.82.0"
19
+ GEM_VERSION = "0.83.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 = "20260617"
25
+ REVISION = "20260623"
26
26
  end
27
27
  end
28
28
  end
@@ -238,36 +238,6 @@ module Google
238
238
  include Google::Apis::Core::JsonObjectSupport
239
239
  end
240
240
 
241
- class GenaiVertexV1beta1CodeMenderAgentConfig
242
- class Representation < Google::Apis::Core::JsonRepresentation; end
243
-
244
- include Google::Apis::Core::JsonObjectSupport
245
- end
246
-
247
- class GenaiVertexV1beta1CodeMenderAgentConfigFileContent
248
- class Representation < Google::Apis::Core::JsonRepresentation; end
249
-
250
- include Google::Apis::Core::JsonObjectSupport
251
- end
252
-
253
- class GenaiVertexV1beta1CodeMenderAgentConfigFindRequest
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
- class GenaiVertexV1beta1CodeMenderAgentConfigFixRequest
260
- class Representation < Google::Apis::Core::JsonRepresentation; end
261
-
262
- include Google::Apis::Core::JsonObjectSupport
263
- end
264
-
265
- class GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig
266
- class Representation < Google::Apis::Core::JsonRepresentation; end
267
-
268
- include Google::Apis::Core::JsonObjectSupport
269
- end
270
-
271
241
  class GenaiVertexV1beta1ComputerUse
272
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
273
243
 
@@ -11701,8 +11671,6 @@ module Google
11701
11671
  # @private
11702
11672
  class Representation < Google::Apis::Core::JsonRepresentation
11703
11673
  property :agent, as: 'agent'
11704
- property :code_mender_config, as: 'code_mender_config', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfig, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfig::Representation
11705
-
11706
11674
  property :deep_research_config, as: 'deepResearchConfig', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DeepResearchAgentConfig, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DeepResearchAgentConfig::Representation
11707
11675
 
11708
11676
  property :dynamic_config, as: 'dynamicConfig', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DynamicAgentConfig, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1DynamicAgentConfig::Representation
@@ -11828,60 +11796,10 @@ module Google
11828
11796
  end
11829
11797
  end
11830
11798
 
11831
- class GenaiVertexV1beta1CodeMenderAgentConfig
11832
- # @private
11833
- class Representation < Google::Apis::Core::JsonRepresentation
11834
- property :find_request, as: 'find_request', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFindRequest, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFindRequest::Representation
11835
-
11836
- property :fix_request, as: 'fix_request', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFixRequest, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFixRequest::Representation
11837
-
11838
- property :model, as: 'model'
11839
- property :session_config, as: 'session_config', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig::Representation
11840
-
11841
- property :session_id, as: 'session_id'
11842
- end
11843
- end
11844
-
11845
- class GenaiVertexV1beta1CodeMenderAgentConfigFileContent
11846
- # @private
11847
- class Representation < Google::Apis::Core::JsonRepresentation
11848
- property :content, as: 'content'
11849
- property :path, as: 'path'
11850
- end
11851
- end
11852
-
11853
- class GenaiVertexV1beta1CodeMenderAgentConfigFindRequest
11854
- # @private
11855
- class Representation < Google::Apis::Core::JsonRepresentation
11856
- property :description, as: 'description'
11857
- property :finding_id, as: 'finding_id'
11858
- collection :source_files, as: 'source_files', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent::Representation
11859
-
11860
- end
11861
- end
11862
-
11863
- class GenaiVertexV1beta1CodeMenderAgentConfigFixRequest
11864
- # @private
11865
- class Representation < Google::Apis::Core::JsonRepresentation
11866
- property :description, as: 'description'
11867
- property :finding_id, as: 'finding_id'
11868
- collection :source_files, as: 'source_files', class: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent, decorator: Google::Apis::AiplatformV1beta1::GenaiVertexV1beta1CodeMenderAgentConfigFileContent::Representation
11869
-
11870
- end
11871
- end
11872
-
11873
- class GenaiVertexV1beta1CodeMenderAgentConfigSessionConfig
11874
- # @private
11875
- class Representation < Google::Apis::Core::JsonRepresentation
11876
- property :max_rounds, as: 'max_rounds'
11877
- property :pipeline_mode, as: 'pipeline_mode'
11878
- property :topology, as: 'topology'
11879
- end
11880
- end
11881
-
11882
11799
  class GenaiVertexV1beta1ComputerUse
11883
11800
  # @private
11884
11801
  class Representation < Google::Apis::Core::JsonRepresentation
11802
+ property :enable_prompt_injection_detection, as: 'enablePromptInjectionDetection'
11885
11803
  property :environment, as: 'environment'
11886
11804
  collection :excluded_predefined_functions, as: 'excludedPredefinedFunctions'
11887
11805
  end
@@ -13596,11 +13514,11 @@ module Google
13596
13514
  class GoogleCloudAiplatformV1beta1AgentAnomalyDetectionScope
13597
13515
  # @private
13598
13516
  class Representation < Google::Apis::Core::JsonRepresentation
13599
- property :auto_enroll, as: 'autoEnroll'
13600
13517
  property :display_name, as: 'displayName'
13601
13518
  collection :log_buckets, as: 'logBuckets'
13602
13519
  property :name, as: 'name'
13603
13520
  collection :observability_buckets, as: 'observabilityBuckets'
13521
+ property :state, as: 'state'
13604
13522
  end
13605
13523
  end
13606
13524
 
@@ -28250,7 +28168,6 @@ module Google
28250
28168
  property :psc_forwarding_rule, as: 'pscForwardingRule'
28251
28169
  property :psc_service_attachment, as: 'pscServiceAttachment'
28252
28170
  property :state, as: 'state'
28253
- property :target_project, as: 'targetProject'
28254
28171
  property :update_time, as: 'updateTime'
28255
28172
  end
28256
28173
  end
@@ -29652,6 +29569,7 @@ module Google
29652
29569
  class Representation < Google::Apis::Core::JsonRepresentation
29653
29570
  property :api_key, as: 'apiKey'
29654
29571
  hash :custom_configs, as: 'customConfigs'
29572
+ property :enable_data_retention, as: 'enableDataRetention'
29655
29573
  end
29656
29574
  end
29657
29575
 
@@ -10622,45 +10622,6 @@ module Google
10622
10622
  execute_or_queue_command(command, &block)
10623
10623
  end
10624
10624
 
10625
- # Updates an existing AgentAnomalyDetectionScope.
10626
- # @param [String] name
10627
- # Identifier. The resource name of the AgentAnomalyDetectionScope. Format: `
10628
- # projects/`project`/locations/`location`/agentAnomalyDetectionScopes/`
10629
- # agent_anomaly_detection_scope``
10630
- # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AgentAnomalyDetectionScope] google_cloud_aiplatform_v1beta1_agent_anomaly_detection_scope_object
10631
- # @param [String] update_mask
10632
- # Optional. The list of fields to update. Supported paths: `display_name`, `
10633
- # auto_enroll`, `log_buckets`, `observability_buckets`.
10634
- # @param [String] fields
10635
- # Selector specifying which fields to include in a partial response.
10636
- # @param [String] quota_user
10637
- # Available to use for quota purposes for server-side applications. Can be any
10638
- # arbitrary string assigned to a user, but should not exceed 40 characters.
10639
- # @param [Google::Apis::RequestOptions] options
10640
- # Request-specific options
10641
- #
10642
- # @yield [result, err] Result & error if block supplied
10643
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
10644
- # @yieldparam err [StandardError] error object if request failed
10645
- #
10646
- # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
10647
- #
10648
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
10649
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
10650
- # @raise [Google::Apis::AuthorizationError] Authorization is required
10651
- def patch_project_location_agent_anomaly_detection_scope(name, google_cloud_aiplatform_v1beta1_agent_anomaly_detection_scope_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
10652
- command = make_simple_command(:patch, 'v1beta1/{+name}', options)
10653
- command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AgentAnomalyDetectionScope::Representation
10654
- command.request_object = google_cloud_aiplatform_v1beta1_agent_anomaly_detection_scope_object
10655
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
10656
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
10657
- command.params['name'] = name unless name.nil?
10658
- command.query['updateMask'] = update_mask unless update_mask.nil?
10659
- command.query['fields'] = fields unless fields.nil?
10660
- command.query['quotaUser'] = quota_user unless quota_user.nil?
10661
- execute_or_queue_command(command, &block)
10662
- end
10663
-
10664
10625
  # Creates an agent.
10665
10626
  # @param [String] parent
10666
10627
  # Required. The resource name of the location to create the agent in. Format: `
@@ -29603,75 +29564,6 @@ module Google
29603
29564
  execute_or_queue_command(command, &block)
29604
29565
  end
29605
29566
 
29606
- # Creates a new MonitoredAgent in a specific Location.
29607
- # @param [String] parent
29608
- # Required. The resource name of the Location to create the MonitoredAgent in.
29609
- # Format: `projects/`project`/locations/`location``
29610
- # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent] google_cloud_aiplatform_v1beta1_monitored_agent_object
29611
- # @param [String] monitored_agent_id
29612
- # Required. The ID to use for the MonitoredAgent, which will become the final
29613
- # component of the MonitoredAgent's resource name.
29614
- # @param [String] fields
29615
- # Selector specifying which fields to include in a partial response.
29616
- # @param [String] quota_user
29617
- # Available to use for quota purposes for server-side applications. Can be any
29618
- # arbitrary string assigned to a user, but should not exceed 40 characters.
29619
- # @param [Google::Apis::RequestOptions] options
29620
- # Request-specific options
29621
- #
29622
- # @yield [result, err] Result & error if block supplied
29623
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent] parsed result object
29624
- # @yieldparam err [StandardError] error object if request failed
29625
- #
29626
- # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent]
29627
- #
29628
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
29629
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
29630
- # @raise [Google::Apis::AuthorizationError] Authorization is required
29631
- def create_project_location_monitored_agent(parent, google_cloud_aiplatform_v1beta1_monitored_agent_object = nil, monitored_agent_id: nil, fields: nil, quota_user: nil, options: nil, &block)
29632
- command = make_simple_command(:post, 'v1beta1/{+parent}/monitoredAgents', options)
29633
- command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent::Representation
29634
- command.request_object = google_cloud_aiplatform_v1beta1_monitored_agent_object
29635
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent::Representation
29636
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MonitoredAgent
29637
- command.params['parent'] = parent unless parent.nil?
29638
- command.query['monitoredAgentId'] = monitored_agent_id unless monitored_agent_id.nil?
29639
- command.query['fields'] = fields unless fields.nil?
29640
- command.query['quotaUser'] = quota_user unless quota_user.nil?
29641
- execute_or_queue_command(command, &block)
29642
- end
29643
-
29644
- # Deletes a specific MonitoredAgent.
29645
- # @param [String] name
29646
- # Required. The name of the MonitoredAgent resource to be deleted. Format: `
29647
- # projects/`project`/locations/`location`/monitoredAgents/`monitored_agent``
29648
- # @param [String] fields
29649
- # Selector specifying which fields to include in a partial response.
29650
- # @param [String] quota_user
29651
- # Available to use for quota purposes for server-side applications. Can be any
29652
- # arbitrary string assigned to a user, but should not exceed 40 characters.
29653
- # @param [Google::Apis::RequestOptions] options
29654
- # Request-specific options
29655
- #
29656
- # @yield [result, err] Result & error if block supplied
29657
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
29658
- # @yieldparam err [StandardError] error object if request failed
29659
- #
29660
- # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
29661
- #
29662
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
29663
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
29664
- # @raise [Google::Apis::AuthorizationError] Authorization is required
29665
- def delete_project_location_monitored_agent(name, fields: nil, quota_user: nil, options: nil, &block)
29666
- command = make_simple_command(:delete, 'v1beta1/{+name}', options)
29667
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
29668
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
29669
- command.params['name'] = name unless name.nil?
29670
- command.query['fields'] = fields unless fields.nil?
29671
- command.query['quotaUser'] = quota_user unless quota_user.nil?
29672
- execute_or_queue_command(command, &block)
29673
- end
29674
-
29675
29567
  # Disables a specific MonitoredAgent.
29676
29568
  # @param [String] name
29677
29569
  # Required. The name of the MonitoredAgent resource to be disabled. Format: `
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.82.0
4
+ version: 0.83.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.82.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.83.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: