google-apis-aiplatform_v1 0.61.0 → 0.62.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e0c9f15a89db4b8238b1959840c5140e679363b32b25fbc81061729d68b630b
|
4
|
+
data.tar.gz: ca49efbf49687059d0ae1c1540c6a07c20049cfdc661057e0e95f57c3fdade06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '083540237db861c0d1330058b9e8f3fc43adc5fce0e3b63ef8907d8ae519c4edacbcc1b524c307b59421a91f4c10fa1b497a9fc42439ca5803dd4548e90f0fa9'
|
7
|
+
data.tar.gz: ab4a1088fedb6c6876a088fbfdcb8c5ae4f9d7d6fa070b5755f6be108fa18ac536624d4b9bb7c21c7b8656050656d9cd3355dec33a53dcb538f741ea8ecc0170
|
data/CHANGELOG.md
CHANGED
@@ -1559,7 +1559,8 @@ module Google
|
|
1559
1559
|
|
1560
1560
|
# Required. The resource metric name. Supported metrics: * For Online Prediction:
|
1561
1561
|
# * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `
|
1562
|
-
# aiplatform.googleapis.com/prediction/online/cpu/utilization`
|
1562
|
+
# aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.
|
1563
|
+
# googleapis.com/prediction/online/request_count`
|
1563
1564
|
# Corresponds to the JSON property `metricName`
|
1564
1565
|
# @return [String]
|
1565
1566
|
attr_accessor :metric_name
|
@@ -6473,6 +6474,12 @@ module Google
|
|
6473
6474
|
# @return [String]
|
6474
6475
|
attr_accessor :deployment_group
|
6475
6476
|
|
6477
|
+
# Optional. The deployment tier that the index is deployed to.
|
6478
|
+
# DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE.
|
6479
|
+
# Corresponds to the JSON property `deploymentTier`
|
6480
|
+
# @return [String]
|
6481
|
+
attr_accessor :deployment_tier
|
6482
|
+
|
6476
6483
|
# The display name of the DeployedIndex. If not provided upon creation, the
|
6477
6484
|
# Index's display_name is used.
|
6478
6485
|
# Corresponds to the JSON property `displayName`
|
@@ -6565,6 +6572,7 @@ module Google
|
|
6565
6572
|
@dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
|
6566
6573
|
@deployed_index_auth_config = args[:deployed_index_auth_config] if args.key?(:deployed_index_auth_config)
|
6567
6574
|
@deployment_group = args[:deployment_group] if args.key?(:deployment_group)
|
6575
|
+
@deployment_tier = args[:deployment_tier] if args.key?(:deployment_tier)
|
6568
6576
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6569
6577
|
@enable_access_logging = args[:enable_access_logging] if args.key?(:enable_access_logging)
|
6570
6578
|
@enable_datapoint_upsert_logging = args[:enable_datapoint_upsert_logging] if args.key?(:enable_datapoint_upsert_logging)
|
@@ -7424,12 +7432,19 @@ module Google
|
|
7424
7432
|
class GoogleCloudAiplatformV1EnterpriseWebSearch
|
7425
7433
|
include Google::Apis::Core::Hashable
|
7426
7434
|
|
7435
|
+
# Optional. List of domains to be excluded from the search results. The default
|
7436
|
+
# limit is 2000 domains.
|
7437
|
+
# Corresponds to the JSON property `excludeDomains`
|
7438
|
+
# @return [Array<String>]
|
7439
|
+
attr_accessor :exclude_domains
|
7440
|
+
|
7427
7441
|
def initialize(**args)
|
7428
7442
|
update!(**args)
|
7429
7443
|
end
|
7430
7444
|
|
7431
7445
|
# Update properties of this object
|
7432
7446
|
def update!(**args)
|
7447
|
+
@exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
|
7433
7448
|
end
|
7434
7449
|
end
|
7435
7450
|
|
@@ -37994,11 +38009,6 @@ module Google
|
|
37994
38009
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution]
|
37995
38010
|
attr_accessor :code_execution
|
37996
38011
|
|
37997
|
-
# Tool to support computer use.
|
37998
|
-
# Corresponds to the JSON property `computerUse`
|
37999
|
-
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse]
|
38000
|
-
attr_accessor :computer_use
|
38001
|
-
|
38002
38012
|
# Tool to search public web data, powered by Vertex AI Search and Sec4
|
38003
38013
|
# compliance.
|
38004
38014
|
# Corresponds to the JSON property `enterpriseWebSearch`
|
@@ -38048,7 +38058,6 @@ module Google
|
|
38048
38058
|
# Update properties of this object
|
38049
38059
|
def update!(**args)
|
38050
38060
|
@code_execution = args[:code_execution] if args.key?(:code_execution)
|
38051
|
-
@computer_use = args[:computer_use] if args.key?(:computer_use)
|
38052
38061
|
@enterprise_web_search = args[:enterprise_web_search] if args.key?(:enterprise_web_search)
|
38053
38062
|
@function_declarations = args[:function_declarations] if args.key?(:function_declarations)
|
38054
38063
|
@google_maps = args[:google_maps] if args.key?(:google_maps)
|
@@ -38200,25 +38209,6 @@ module Google
|
|
38200
38209
|
end
|
38201
38210
|
end
|
38202
38211
|
|
38203
|
-
# Tool to support computer use.
|
38204
|
-
class GoogleCloudAiplatformV1ToolComputerUse
|
38205
|
-
include Google::Apis::Core::Hashable
|
38206
|
-
|
38207
|
-
# Required. The environment being operated.
|
38208
|
-
# Corresponds to the JSON property `environment`
|
38209
|
-
# @return [String]
|
38210
|
-
attr_accessor :environment
|
38211
|
-
|
38212
|
-
def initialize(**args)
|
38213
|
-
update!(**args)
|
38214
|
-
end
|
38215
|
-
|
38216
|
-
# Update properties of this object
|
38217
|
-
def update!(**args)
|
38218
|
-
@environment = args[:environment] if args.key?(:environment)
|
38219
|
-
end
|
38220
|
-
end
|
38221
|
-
|
38222
38212
|
# Tool config. This config is shared for all tools provided in the request.
|
38223
38213
|
class GoogleCloudAiplatformV1ToolConfig
|
38224
38214
|
include Google::Apis::Core::Hashable
|
@@ -38249,12 +38239,19 @@ module Google
|
|
38249
38239
|
class GoogleCloudAiplatformV1ToolGoogleSearch
|
38250
38240
|
include Google::Apis::Core::Hashable
|
38251
38241
|
|
38242
|
+
# Optional. List of domains to be excluded from the search results. The default
|
38243
|
+
# limit is 2000 domains. Example: ["amazon.com", "facebook.com"].
|
38244
|
+
# Corresponds to the JSON property `excludeDomains`
|
38245
|
+
# @return [Array<String>]
|
38246
|
+
attr_accessor :exclude_domains
|
38247
|
+
|
38252
38248
|
def initialize(**args)
|
38253
38249
|
update!(**args)
|
38254
38250
|
end
|
38255
38251
|
|
38256
38252
|
# Update properties of this object
|
38257
38253
|
def update!(**args)
|
38254
|
+
@exclude_domains = args[:exclude_domains] if args.key?(:exclude_domains)
|
38258
38255
|
end
|
38259
38256
|
end
|
38260
38257
|
|
@@ -40812,6 +40809,12 @@ module Google
|
|
40812
40809
|
# @return [String]
|
40813
40810
|
attr_accessor :end_offset
|
40814
40811
|
|
40812
|
+
# Optional. The frame rate of the video sent to the model. If not specified, the
|
40813
|
+
# default value will be 1.0. The fps range is (0.0, 24.0].
|
40814
|
+
# Corresponds to the JSON property `fps`
|
40815
|
+
# @return [Float]
|
40816
|
+
attr_accessor :fps
|
40817
|
+
|
40815
40818
|
# Optional. The start offset of the video.
|
40816
40819
|
# Corresponds to the JSON property `startOffset`
|
40817
40820
|
# @return [String]
|
@@ -40824,6 +40827,7 @@ module Google
|
|
40824
40827
|
# Update properties of this object
|
40825
40828
|
def update!(**args)
|
40826
40829
|
@end_offset = args[:end_offset] if args.key?(:end_offset)
|
40830
|
+
@fps = args[:fps] if args.key?(:fps)
|
40827
40831
|
@start_offset = args[:start_offset] if args.key?(:start_offset)
|
40828
40832
|
end
|
40829
40833
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AiplatformV1
|
18
18
|
# Version of the google-apis-aiplatform_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.62.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 = "20250731"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6280,12 +6280,6 @@ module Google
|
|
6280
6280
|
include Google::Apis::Core::JsonObjectSupport
|
6281
6281
|
end
|
6282
6282
|
|
6283
|
-
class GoogleCloudAiplatformV1ToolComputerUse
|
6284
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6285
|
-
|
6286
|
-
include Google::Apis::Core::JsonObjectSupport
|
6287
|
-
end
|
6288
|
-
|
6289
6283
|
class GoogleCloudAiplatformV1ToolConfig
|
6290
6284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6291
6285
|
|
@@ -8916,6 +8910,7 @@ module Google
|
|
8916
8910
|
property :deployed_index_auth_config, as: 'deployedIndexAuthConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployedIndexAuthConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DeployedIndexAuthConfig::Representation
|
8917
8911
|
|
8918
8912
|
property :deployment_group, as: 'deploymentGroup'
|
8913
|
+
property :deployment_tier, as: 'deploymentTier'
|
8919
8914
|
property :display_name, as: 'displayName'
|
8920
8915
|
property :enable_access_logging, as: 'enableAccessLogging'
|
8921
8916
|
property :enable_datapoint_upsert_logging, as: 'enableDatapointUpsertLogging'
|
@@ -9148,6 +9143,7 @@ module Google
|
|
9148
9143
|
class GoogleCloudAiplatformV1EnterpriseWebSearch
|
9149
9144
|
# @private
|
9150
9145
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9146
|
+
collection :exclude_domains, as: 'excludeDomains'
|
9151
9147
|
end
|
9152
9148
|
end
|
9153
9149
|
|
@@ -17712,8 +17708,6 @@ module Google
|
|
17712
17708
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17713
17709
|
property :code_execution, as: 'codeExecution', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolCodeExecution::Representation
|
17714
17710
|
|
17715
|
-
property :computer_use, as: 'computerUse', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ToolComputerUse::Representation
|
17716
|
-
|
17717
17711
|
property :enterprise_web_search, as: 'enterpriseWebSearch', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnterpriseWebSearch::Representation
|
17718
17712
|
|
17719
17713
|
collection :function_declarations, as: 'functionDeclarations', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1FunctionDeclaration::Representation
|
@@ -17784,13 +17778,6 @@ module Google
|
|
17784
17778
|
end
|
17785
17779
|
end
|
17786
17780
|
|
17787
|
-
class GoogleCloudAiplatformV1ToolComputerUse
|
17788
|
-
# @private
|
17789
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
17790
|
-
property :environment, as: 'environment'
|
17791
|
-
end
|
17792
|
-
end
|
17793
|
-
|
17794
17781
|
class GoogleCloudAiplatformV1ToolConfig
|
17795
17782
|
# @private
|
17796
17783
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17804,6 +17791,7 @@ module Google
|
|
17804
17791
|
class GoogleCloudAiplatformV1ToolGoogleSearch
|
17805
17792
|
# @private
|
17806
17793
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17794
|
+
collection :exclude_domains, as: 'excludeDomains'
|
17807
17795
|
end
|
17808
17796
|
end
|
17809
17797
|
|
@@ -18667,6 +18655,7 @@ module Google
|
|
18667
18655
|
# @private
|
18668
18656
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18669
18657
|
property :end_offset, as: 'endOffset'
|
18658
|
+
property :fps, as: 'fps'
|
18670
18659
|
property :start_offset, as: 'startOffset'
|
18671
18660
|
end
|
18672
18661
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-aiplatform_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.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_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.62.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|