google-apis-aiplatform_v1beta1 0.50.0 → 0.51.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: c37f1bfc13e1fe4497edf81c67137a3293d35e231a14bd7a22f32b01f78fcc78
4
- data.tar.gz: e1aa970efcb7a53e4c2f9069e37d271eb2e042f8d1af63333c5e5e5404c98a9a
3
+ metadata.gz: 22538bf5140797d0002240bf33d26b3f1e4a0afd173bfd3bc7d7cd24a5e84808
4
+ data.tar.gz: ecd844a7fcf0b1115f0476457dadf01c703f092af91082fa524bacf695ad42f8
5
5
  SHA512:
6
- metadata.gz: aa6bcb7e6a16c1c88ae3147cfaebbff14469115fc3381128d08a45dbed44e8e33ff5f4dadcfe8c26ccd4fb4855c6967be8417e62588b76a8a5c2a889c419f280
7
- data.tar.gz: 6761273d8f7f42d475626ebf7a33ee026477187fdbfe1c3ce7f79a7c0f2bd3b40336bc6bc8978b7d45c24ed367fec62395a19f6af1862410cc62609dae3b5006
6
+ metadata.gz: 06a8591a79632265e22ceb48a2ce8bfefecce1b2e63a476439b02dc36a3222dd2f2ee3d751dc36c082653ef8d8a87348f6a1c488b7e407371ae04c9c1bb2a488
7
+ data.tar.gz: b6ca4ebcc739cba0955f4be12711779e1d7cab8d182797a84e4cef68f0424fd52127bb299665bff7a5e0965ae1c947775b459460b3aa5fb9371ec36e2c781ddb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.51.0 (2025-06-22)
4
+
5
+ * Regenerated from discovery document revision 20250606
6
+
3
7
  ### v0.50.0 (2025-06-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20250602
@@ -3457,6 +3457,11 @@ module Google
3457
3457
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating>]
3458
3458
  attr_accessor :safety_ratings
3459
3459
 
3460
+ # Metadata related to url context retrieval tool.
3461
+ # Corresponds to the JSON property `urlContextMetadata`
3462
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata]
3463
+ attr_accessor :url_context_metadata
3464
+
3460
3465
  def initialize(**args)
3461
3466
  update!(**args)
3462
3467
  end
@@ -3472,6 +3477,7 @@ module Google
3472
3477
  @index = args[:index] if args.key?(:index)
3473
3478
  @logprobs_result = args[:logprobs_result] if args.key?(:logprobs_result)
3474
3479
  @safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
3480
+ @url_context_metadata = args[:url_context_metadata] if args.key?(:url_context_metadata)
3475
3481
  end
3476
3482
  end
3477
3483
 
@@ -7319,12 +7325,12 @@ module Google
7319
7325
  # @return [String]
7320
7326
  attr_accessor :id
7321
7327
 
7322
- # Required. The resource name of the Model that this is the deployment of. Note
7323
- # that the Model may be in a different location than the DeployedModel's
7324
- # Endpoint. The resource name may contain version id or version alias to specify
7325
- # the version. Example: `projects/`project`/locations/`location`/models/`model`@
7326
- # 2` or `projects/`project`/locations/`location`/models/`model`@golden` if no
7327
- # version is specified, the default version will be deployed.
7328
+ # The resource name of the Model that this is the deployment of. Note that the
7329
+ # Model may be in a different location than the DeployedModel's Endpoint. The
7330
+ # resource name may contain version id or version alias to specify the version.
7331
+ # Example: `projects/`project`/locations/`location`/models/`model`@2` or `
7332
+ # projects/`project`/locations/`location`/models/`model`@golden` if no version
7333
+ # is specified, the default version will be deployed.
7328
7334
  # Corresponds to the JSON property `model`
7329
7335
  # @return [String]
7330
7336
  attr_accessor :model
@@ -7828,6 +7834,43 @@ module Google
7828
7834
  end
7829
7835
  end
7830
7836
 
7837
+ # DNS peering configuration. These configurations are used to create DNS peering
7838
+ # zones in the Vertex tenant project VPC, enabling resolution of records within
7839
+ # the specified domain hosted in the target network's Cloud DNS.
7840
+ class GoogleCloudAiplatformV1beta1DnsPeeringConfig
7841
+ include Google::Apis::Core::Hashable
7842
+
7843
+ # Required. The DNS name suffix of the zone being peered to, e.g., "my-internal-
7844
+ # domain.corp.". Must end with a dot.
7845
+ # Corresponds to the JSON property `domain`
7846
+ # @return [String]
7847
+ attr_accessor :domain
7848
+
7849
+ # Required. The VPC network name in the target_project where the DNS zone
7850
+ # specified by 'domain' is visible.
7851
+ # Corresponds to the JSON property `targetNetwork`
7852
+ # @return [String]
7853
+ attr_accessor :target_network
7854
+
7855
+ # Required. The project ID hosting the Cloud DNS managed zone that contains the '
7856
+ # domain'. The Vertex AI Service Agent requires the dns.peer role on this
7857
+ # project.
7858
+ # Corresponds to the JSON property `targetProject`
7859
+ # @return [String]
7860
+ attr_accessor :target_project
7861
+
7862
+ def initialize(**args)
7863
+ update!(**args)
7864
+ end
7865
+
7866
+ # Update properties of this object
7867
+ def update!(**args)
7868
+ @domain = args[:domain] if args.key?(:domain)
7869
+ @target_network = args[:target_network] if args.key?(:target_network)
7870
+ @target_project = args[:target_project] if args.key?(:target_project)
7871
+ end
7872
+ end
7873
+
7831
7874
  # A list of double values.
7832
7875
  class GoogleCloudAiplatformV1beta1DoubleArray
7833
7876
  include Google::Apis::Core::Hashable
@@ -15609,7 +15652,9 @@ module Google
15609
15652
  include Google::Apis::Core::Hashable
15610
15653
 
15611
15654
  # Confidence score of the support references. Ranges from 0 to 1. 1 is the most
15612
- # confident. This list must have the same size as the grounding_chunk_indices.
15655
+ # confident. For Gemini 2.0 and before, this list must have the same size as the
15656
+ # grounding_chunk_indices. For Gemini 2.5 and after, this list will be empty and
15657
+ # should be ignored.
15613
15658
  # Corresponds to the JSON property `confidenceScores`
15614
15659
  # @return [Array<Float>]
15615
15660
  attr_accessor :confidence_scores
@@ -20423,6 +20468,16 @@ module Google
20423
20468
  # @return [String]
20424
20469
  attr_accessor :image_uri
20425
20470
 
20471
+ # Immutable. Invoke route prefix for the custom container. "/*" is the only
20472
+ # supported value right now. By setting this field, any non-root route on this
20473
+ # model will be accessible with [PredictionService.Invoke] eg: "/invoke/foo/bar".
20474
+ # Only one of `predict_route` or `invoke_route_prefix` can be set, and we
20475
+ # default to using `predict_route` if this field is not set. If this field is
20476
+ # set, the Model can only be deployed to dedicated endpoint.
20477
+ # Corresponds to the JSON property `invokeRoutePrefix`
20478
+ # @return [String]
20479
+ attr_accessor :invoke_route_prefix
20480
+
20426
20481
  # Probe describes a health check to be performed against a container to
20427
20482
  # determine whether it is alive or ready to receive traffic.
20428
20483
  # Corresponds to the JSON property `livenessProbe`
@@ -20491,6 +20546,7 @@ module Google
20491
20546
  @health_probe = args[:health_probe] if args.key?(:health_probe)
20492
20547
  @health_route = args[:health_route] if args.key?(:health_route)
20493
20548
  @image_uri = args[:image_uri] if args.key?(:image_uri)
20549
+ @invoke_route_prefix = args[:invoke_route_prefix] if args.key?(:invoke_route_prefix)
20494
20550
  @liveness_probe = args[:liveness_probe] if args.key?(:liveness_probe)
20495
20551
  @ports = args[:ports] if args.key?(:ports)
20496
20552
  @predict_route = args[:predict_route] if args.key?(:predict_route)
@@ -24768,14 +24824,17 @@ module Google
24768
24824
  class GoogleCloudAiplatformV1beta1PscAutomationConfig
24769
24825
  include Google::Apis::Core::Hashable
24770
24826
 
24771
- # Output only. Forwarding rule created by the PSC service automation. Note for
24772
- # Vector search, use IndexPrivateEndpoint instead.
24827
+ # Output only. Error message if the PSC service automation failed.
24828
+ # Corresponds to the JSON property `errorMessage`
24829
+ # @return [String]
24830
+ attr_accessor :error_message
24831
+
24832
+ # Output only. Forwarding rule created by the PSC service automation.
24773
24833
  # Corresponds to the JSON property `forwardingRule`
24774
24834
  # @return [String]
24775
24835
  attr_accessor :forwarding_rule
24776
24836
 
24777
- # Output only. IP address rule created by the PSC service automation. Note for
24778
- # Vector search, use IndexPrivateEndpoint instead.
24837
+ # Output only. IP address rule created by the PSC service automation.
24779
24838
  # Corresponds to the JSON property `ipAddress`
24780
24839
  # @return [String]
24781
24840
  attr_accessor :ip_address
@@ -24794,16 +24853,23 @@ module Google
24794
24853
  # @return [String]
24795
24854
  attr_accessor :project_id
24796
24855
 
24856
+ # Output only. The state of the PSC service automation.
24857
+ # Corresponds to the JSON property `state`
24858
+ # @return [String]
24859
+ attr_accessor :state
24860
+
24797
24861
  def initialize(**args)
24798
24862
  update!(**args)
24799
24863
  end
24800
24864
 
24801
24865
  # Update properties of this object
24802
24866
  def update!(**args)
24867
+ @error_message = args[:error_message] if args.key?(:error_message)
24803
24868
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
24804
24869
  @ip_address = args[:ip_address] if args.key?(:ip_address)
24805
24870
  @network = args[:network] if args.key?(:network)
24806
24871
  @project_id = args[:project_id] if args.key?(:project_id)
24872
+ @state = args[:state] if args.key?(:state)
24807
24873
  end
24808
24874
  end
24809
24875
 
@@ -27101,6 +27167,14 @@ module Google
27101
27167
  class GoogleCloudAiplatformV1beta1PscInterfaceConfig
27102
27168
  include Google::Apis::Core::Hashable
27103
27169
 
27170
+ # Optional. DNS peering configurations. When specified, Vertex AI will attempt
27171
+ # to configure DNS peering zones in the tenant project VPC to resolve the
27172
+ # specified domains using the target network's Cloud DNS. The user must grant
27173
+ # the dns.peer role to the Vertex AI Service Agent on the target project.
27174
+ # Corresponds to the JSON property `dnsPeeringConfigs`
27175
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig>]
27176
+ attr_accessor :dns_peering_configs
27177
+
27104
27178
  # Optional. The name of the Compute Engine [network attachment](https://cloud.
27105
27179
  # google.com/vpc/docs/about-network-attachments) to attach to the resource
27106
27180
  # within the region and user project. To specify this field, you must have
@@ -27117,6 +27191,7 @@ module Google
27117
27191
 
27118
27192
  # Update properties of this object
27119
27193
  def update!(**args)
27194
+ @dns_peering_configs = args[:dns_peering_configs] if args.key?(:dns_peering_configs)
27120
27195
  @network_attachment = args[:network_attachment] if args.key?(:network_attachment)
27121
27196
  end
27122
27197
  end
@@ -27520,6 +27595,12 @@ module Google
27520
27595
  # @return [String]
27521
27596
  attr_accessor :resource_use_case
27522
27597
 
27598
+ # Optional. For notebook resource, whether the notebook supports Workbench.
27599
+ # Corresponds to the JSON property `supportsWorkbench`
27600
+ # @return [Boolean]
27601
+ attr_accessor :supports_workbench
27602
+ alias_method :supports_workbench?, :supports_workbench
27603
+
27523
27604
  # Required.
27524
27605
  # Corresponds to the JSON property `title`
27525
27606
  # @return [String]
@@ -27535,6 +27616,7 @@ module Google
27535
27616
  @resource_description = args[:resource_description] if args.key?(:resource_description)
27536
27617
  @resource_title = args[:resource_title] if args.key?(:resource_title)
27537
27618
  @resource_use_case = args[:resource_use_case] if args.key?(:resource_use_case)
27619
+ @supports_workbench = args[:supports_workbench] if args.key?(:supports_workbench)
27538
27620
  @title = args[:title] if args.key?(:title)
27539
27621
  end
27540
27622
  end
@@ -46054,6 +46136,50 @@ module Google
46054
46136
  end
46055
46137
  end
46056
46138
 
46139
+ # Metadata related to url context retrieval tool.
46140
+ class GoogleCloudAiplatformV1beta1UrlContextMetadata
46141
+ include Google::Apis::Core::Hashable
46142
+
46143
+ # Output only. List of url context.
46144
+ # Corresponds to the JSON property `urlMetadata`
46145
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata>]
46146
+ attr_accessor :url_metadata
46147
+
46148
+ def initialize(**args)
46149
+ update!(**args)
46150
+ end
46151
+
46152
+ # Update properties of this object
46153
+ def update!(**args)
46154
+ @url_metadata = args[:url_metadata] if args.key?(:url_metadata)
46155
+ end
46156
+ end
46157
+
46158
+ # Context of the a single url retrieval.
46159
+ class GoogleCloudAiplatformV1beta1UrlMetadata
46160
+ include Google::Apis::Core::Hashable
46161
+
46162
+ # Retrieved url by the tool.
46163
+ # Corresponds to the JSON property `retrievedUrl`
46164
+ # @return [String]
46165
+ attr_accessor :retrieved_url
46166
+
46167
+ # Status of the url retrieval.
46168
+ # Corresponds to the JSON property `urlRetrievalStatus`
46169
+ # @return [String]
46170
+ attr_accessor :url_retrieval_status
46171
+
46172
+ def initialize(**args)
46173
+ update!(**args)
46174
+ end
46175
+
46176
+ # Update properties of this object
46177
+ def update!(**args)
46178
+ @retrieved_url = args[:retrieved_url] if args.key?(:retrieved_url)
46179
+ @url_retrieval_status = args[:url_retrieval_status] if args.key?(:url_retrieval_status)
46180
+ end
46181
+ end
46182
+
46057
46183
  # References an API call. It contains more information about long running
46058
46184
  # operation and Jobs that are triggered by the API call.
46059
46185
  class GoogleCloudAiplatformV1beta1UserActionReference
@@ -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.50.0"
19
+ GEM_VERSION = "0.51.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 = "20250602"
25
+ REVISION = "20250606"
26
26
  end
27
27
  end
28
28
  end
@@ -1396,6 +1396,12 @@ module Google
1396
1396
  include Google::Apis::Core::JsonObjectSupport
1397
1397
  end
1398
1398
 
1399
+ class GoogleCloudAiplatformV1beta1DnsPeeringConfig
1400
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1401
+
1402
+ include Google::Apis::Core::JsonObjectSupport
1403
+ end
1404
+
1399
1405
  class GoogleCloudAiplatformV1beta1DoubleArray
1400
1406
  class Representation < Google::Apis::Core::JsonRepresentation; end
1401
1407
 
@@ -7834,6 +7840,18 @@ module Google
7834
7840
  include Google::Apis::Core::JsonObjectSupport
7835
7841
  end
7836
7842
 
7843
+ class GoogleCloudAiplatformV1beta1UrlContextMetadata
7844
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7845
+
7846
+ include Google::Apis::Core::JsonObjectSupport
7847
+ end
7848
+
7849
+ class GoogleCloudAiplatformV1beta1UrlMetadata
7850
+ class Representation < Google::Apis::Core::JsonRepresentation; end
7851
+
7852
+ include Google::Apis::Core::JsonObjectSupport
7853
+ end
7854
+
7837
7855
  class GoogleCloudAiplatformV1beta1UserActionReference
7838
7856
  class Representation < Google::Apis::Core::JsonRepresentation; end
7839
7857
 
@@ -9072,6 +9090,8 @@ module Google
9072
9090
 
9073
9091
  collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SafetyRating::Representation
9074
9092
 
9093
+ property :url_context_metadata, as: 'urlContextMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlContextMetadata::Representation
9094
+
9075
9095
  end
9076
9096
  end
9077
9097
 
@@ -10318,6 +10338,15 @@ module Google
10318
10338
  end
10319
10339
  end
10320
10340
 
10341
+ class GoogleCloudAiplatformV1beta1DnsPeeringConfig
10342
+ # @private
10343
+ class Representation < Google::Apis::Core::JsonRepresentation
10344
+ property :domain, as: 'domain'
10345
+ property :target_network, as: 'targetNetwork'
10346
+ property :target_project, as: 'targetProject'
10347
+ end
10348
+ end
10349
+
10321
10350
  class GoogleCloudAiplatformV1beta1DoubleArray
10322
10351
  # @private
10323
10352
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -13895,6 +13924,7 @@ module Google
13895
13924
 
13896
13925
  property :health_route, as: 'healthRoute'
13897
13926
  property :image_uri, as: 'imageUri'
13927
+ property :invoke_route_prefix, as: 'invokeRoutePrefix'
13898
13928
  property :liveness_probe, as: 'livenessProbe', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Probe, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Probe::Representation
13899
13929
 
13900
13930
  collection :ports, as: 'ports', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Port, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Port::Representation
@@ -15113,10 +15143,12 @@ module Google
15113
15143
  class GoogleCloudAiplatformV1beta1PscAutomationConfig
15114
15144
  # @private
15115
15145
  class Representation < Google::Apis::Core::JsonRepresentation
15146
+ property :error_message, as: 'errorMessage'
15116
15147
  property :forwarding_rule, as: 'forwardingRule'
15117
15148
  property :ip_address, as: 'ipAddress'
15118
15149
  property :network, as: 'network'
15119
15150
  property :project_id, as: 'projectId'
15151
+ property :state, as: 'state'
15120
15152
  end
15121
15153
  end
15122
15154
 
@@ -15748,6 +15780,8 @@ module Google
15748
15780
  class GoogleCloudAiplatformV1beta1PscInterfaceConfig
15749
15781
  # @private
15750
15782
  class Representation < Google::Apis::Core::JsonRepresentation
15783
+ collection :dns_peering_configs, as: 'dnsPeeringConfigs', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DnsPeeringConfig::Representation
15784
+
15751
15785
  property :network_attachment, as: 'networkAttachment'
15752
15786
  end
15753
15787
  end
@@ -15874,6 +15908,7 @@ module Google
15874
15908
  property :resource_description, as: 'resourceDescription'
15875
15909
  property :resource_title, as: 'resourceTitle'
15876
15910
  property :resource_use_case, as: 'resourceUseCase'
15911
+ property :supports_workbench, as: 'supportsWorkbench'
15877
15912
  property :title, as: 'title'
15878
15913
  end
15879
15914
  end
@@ -21292,6 +21327,22 @@ module Google
21292
21327
  end
21293
21328
  end
21294
21329
 
21330
+ class GoogleCloudAiplatformV1beta1UrlContextMetadata
21331
+ # @private
21332
+ class Representation < Google::Apis::Core::JsonRepresentation
21333
+ collection :url_metadata, as: 'urlMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1UrlMetadata::Representation
21334
+
21335
+ end
21336
+ end
21337
+
21338
+ class GoogleCloudAiplatformV1beta1UrlMetadata
21339
+ # @private
21340
+ class Representation < Google::Apis::Core::JsonRepresentation
21341
+ property :retrieved_url, as: 'retrievedUrl'
21342
+ property :url_retrieval_status, as: 'urlRetrievalStatus'
21343
+ end
21344
+ end
21345
+
21295
21346
  class GoogleCloudAiplatformV1beta1UserActionReference
21296
21347
  # @private
21297
21348
  class Representation < Google::Apis::Core::JsonRepresentation
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.50.0
4
+ version: 0.51.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.50.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.51.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: