google-apis-aiplatform_v1 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e00524b9130c3014ce57addbb40905177ee7a50f7b78a880d75d2a27eeb830ed
|
4
|
+
data.tar.gz: fd64a165d6e284b81370f52bac6c4a8171e3ee84785a5e5561e884643f5aa1dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 631b3be836fafee3e749d98b05df090d6618db6e34ddf61529ae421605c4867dc537e60471be75ebbe081b81baad0d534478c721de883ec3a463e1f868f96e85
|
7
|
+
data.tar.gz: bf255b388265041da0aa4ecb0fec8e9d6ed53ca0c15e7f45a95e3b2dc384acef6ea3f6af9dac53a66f7c194af35a47f1a52bebe22221c39b928e7b53ee6039f4
|
data/CHANGELOG.md
CHANGED
@@ -3864,6 +3864,18 @@ module Google
|
|
3864
3864
|
# @return [String]
|
3865
3865
|
attr_accessor :name
|
3866
3866
|
|
3867
|
+
# Output only. Reserved for future use.
|
3868
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
3869
|
+
# @return [Boolean]
|
3870
|
+
attr_accessor :satisfies_pzi
|
3871
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
3872
|
+
|
3873
|
+
# Output only. Reserved for future use.
|
3874
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
3875
|
+
# @return [Boolean]
|
3876
|
+
attr_accessor :satisfies_pzs
|
3877
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
3878
|
+
|
3867
3879
|
# Output only. Time when the CustomJob for the first time entered the `
|
3868
3880
|
# JOB_STATE_RUNNING` state.
|
3869
3881
|
# Corresponds to the JSON property `startTime`
|
@@ -3905,6 +3917,8 @@ module Google
|
|
3905
3917
|
@job_spec = args[:job_spec] if args.key?(:job_spec)
|
3906
3918
|
@labels = args[:labels] if args.key?(:labels)
|
3907
3919
|
@name = args[:name] if args.key?(:name)
|
3920
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
3921
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
3908
3922
|
@start_time = args[:start_time] if args.key?(:start_time)
|
3909
3923
|
@state = args[:state] if args.key?(:state)
|
3910
3924
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -4583,6 +4597,13 @@ module Google
|
|
4583
4597
|
# @return [Fixnum]
|
4584
4598
|
attr_accessor :min_replica_count
|
4585
4599
|
|
4600
|
+
# Optional. If true, schedule the deployment workload on [spot VMs](https://
|
4601
|
+
# cloud.google.com/kubernetes-engine/docs/concepts/spot-vms).
|
4602
|
+
# Corresponds to the JSON property `spot`
|
4603
|
+
# @return [Boolean]
|
4604
|
+
attr_accessor :spot
|
4605
|
+
alias_method :spot?, :spot
|
4606
|
+
|
4586
4607
|
def initialize(**args)
|
4587
4608
|
update!(**args)
|
4588
4609
|
end
|
@@ -4593,6 +4614,7 @@ module Google
|
|
4593
4614
|
@machine_spec = args[:machine_spec] if args.key?(:machine_spec)
|
4594
4615
|
@max_replica_count = args[:max_replica_count] if args.key?(:max_replica_count)
|
4595
4616
|
@min_replica_count = args[:min_replica_count] if args.key?(:min_replica_count)
|
4617
|
+
@spot = args[:spot] if args.key?(:spot)
|
4596
4618
|
end
|
4597
4619
|
end
|
4598
4620
|
|
@@ -10291,10 +10313,10 @@ module Google
|
|
10291
10313
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
10292
10314
|
attr_accessor :response_schema
|
10293
10315
|
|
10294
|
-
#
|
10295
|
-
# Corresponds to the JSON property `
|
10296
|
-
# @return [
|
10297
|
-
attr_accessor :
|
10316
|
+
# Routing config.
|
10317
|
+
# Corresponds to the JSON property `routingConfig`
|
10318
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfig]
|
10319
|
+
attr_accessor :routing_config
|
10298
10320
|
|
10299
10321
|
# Optional. Stop sequences.
|
10300
10322
|
# Corresponds to the JSON property `stopSequences`
|
@@ -10328,7 +10350,7 @@ module Google
|
|
10328
10350
|
@presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
|
10329
10351
|
@response_mime_type = args[:response_mime_type] if args.key?(:response_mime_type)
|
10330
10352
|
@response_schema = args[:response_schema] if args.key?(:response_schema)
|
10331
|
-
@
|
10353
|
+
@routing_config = args[:routing_config] if args.key?(:routing_config)
|
10332
10354
|
@stop_sequences = args[:stop_sequences] if args.key?(:stop_sequences)
|
10333
10355
|
@temperature = args[:temperature] if args.key?(:temperature)
|
10334
10356
|
@top_k = args[:top_k] if args.key?(:top_k)
|
@@ -10336,6 +10358,72 @@ module Google
|
|
10336
10358
|
end
|
10337
10359
|
end
|
10338
10360
|
|
10361
|
+
# Routing config.
|
10362
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfig
|
10363
|
+
include Google::Apis::Core::Hashable
|
10364
|
+
|
10365
|
+
# When automated routing is specified, the routing will be determined by the
|
10366
|
+
# pretrained routing model and customer provided model routing preference.
|
10367
|
+
# Corresponds to the JSON property `autoMode`
|
10368
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode]
|
10369
|
+
attr_accessor :auto_mode
|
10370
|
+
|
10371
|
+
# When manual routing is set, the specified model will be used directly.
|
10372
|
+
# Corresponds to the JSON property `manualMode`
|
10373
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode]
|
10374
|
+
attr_accessor :manual_mode
|
10375
|
+
|
10376
|
+
def initialize(**args)
|
10377
|
+
update!(**args)
|
10378
|
+
end
|
10379
|
+
|
10380
|
+
# Update properties of this object
|
10381
|
+
def update!(**args)
|
10382
|
+
@auto_mode = args[:auto_mode] if args.key?(:auto_mode)
|
10383
|
+
@manual_mode = args[:manual_mode] if args.key?(:manual_mode)
|
10384
|
+
end
|
10385
|
+
end
|
10386
|
+
|
10387
|
+
# When automated routing is specified, the routing will be determined by the
|
10388
|
+
# pretrained routing model and customer provided model routing preference.
|
10389
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode
|
10390
|
+
include Google::Apis::Core::Hashable
|
10391
|
+
|
10392
|
+
# The model routing preference.
|
10393
|
+
# Corresponds to the JSON property `modelRoutingPreference`
|
10394
|
+
# @return [String]
|
10395
|
+
attr_accessor :model_routing_preference
|
10396
|
+
|
10397
|
+
def initialize(**args)
|
10398
|
+
update!(**args)
|
10399
|
+
end
|
10400
|
+
|
10401
|
+
# Update properties of this object
|
10402
|
+
def update!(**args)
|
10403
|
+
@model_routing_preference = args[:model_routing_preference] if args.key?(:model_routing_preference)
|
10404
|
+
end
|
10405
|
+
end
|
10406
|
+
|
10407
|
+
# When manual routing is set, the specified model will be used directly.
|
10408
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode
|
10409
|
+
include Google::Apis::Core::Hashable
|
10410
|
+
|
10411
|
+
# The model name to use. Only the public LLM models are accepted. e.g. gemini-1.
|
10412
|
+
# 5-pro-001.
|
10413
|
+
# Corresponds to the JSON property `modelName`
|
10414
|
+
# @return [String]
|
10415
|
+
attr_accessor :model_name
|
10416
|
+
|
10417
|
+
def initialize(**args)
|
10418
|
+
update!(**args)
|
10419
|
+
end
|
10420
|
+
|
10421
|
+
# Update properties of this object
|
10422
|
+
def update!(**args)
|
10423
|
+
@model_name = args[:model_name] if args.key?(:model_name)
|
10424
|
+
end
|
10425
|
+
end
|
10426
|
+
|
10339
10427
|
# Generic Metadata shared by all operations.
|
10340
10428
|
class GoogleCloudAiplatformV1GenericOperationMetadata
|
10341
10429
|
include Google::Apis::Core::Hashable
|
@@ -10721,6 +10809,18 @@ module Google
|
|
10721
10809
|
# @return [Fixnum]
|
10722
10810
|
attr_accessor :parallel_trial_count
|
10723
10811
|
|
10812
|
+
# Output only. Reserved for future use.
|
10813
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
10814
|
+
# @return [Boolean]
|
10815
|
+
attr_accessor :satisfies_pzi
|
10816
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
10817
|
+
|
10818
|
+
# Output only. Reserved for future use.
|
10819
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
10820
|
+
# @return [Boolean]
|
10821
|
+
attr_accessor :satisfies_pzs
|
10822
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
10823
|
+
|
10724
10824
|
# Output only. Time when the HyperparameterTuningJob for the first time entered
|
10725
10825
|
# the `JOB_STATE_RUNNING` state.
|
10726
10826
|
# Corresponds to the JSON property `startTime`
|
@@ -10768,6 +10868,8 @@ module Google
|
|
10768
10868
|
@max_trial_count = args[:max_trial_count] if args.key?(:max_trial_count)
|
10769
10869
|
@name = args[:name] if args.key?(:name)
|
10770
10870
|
@parallel_trial_count = args[:parallel_trial_count] if args.key?(:parallel_trial_count)
|
10871
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
10872
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
10771
10873
|
@start_time = args[:start_time] if args.key?(:start_time)
|
10772
10874
|
@state = args[:state] if args.key?(:state)
|
10773
10875
|
@study_spec = args[:study_spec] if args.key?(:study_spec)
|
@@ -13182,6 +13284,13 @@ module Google
|
|
13182
13284
|
# @return [String]
|
13183
13285
|
attr_accessor :machine_type
|
13184
13286
|
|
13287
|
+
# A ReservationAffinity can be used to configure a Vertex AI resource (e.g., a
|
13288
|
+
# DeployedModel) to draw its Compute Engine resources from a Shared Reservation,
|
13289
|
+
# or exclusively from on-demand capacity.
|
13290
|
+
# Corresponds to the JSON property `reservationAffinity`
|
13291
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReservationAffinity]
|
13292
|
+
attr_accessor :reservation_affinity
|
13293
|
+
|
13185
13294
|
# Immutable. The topology of the TPUs. Corresponds to the TPU topologies
|
13186
13295
|
# available from GKE. (Example: tpu_topology: "2x2x1").
|
13187
13296
|
# Corresponds to the JSON property `tpuTopology`
|
@@ -13197,6 +13306,7 @@ module Google
|
|
13197
13306
|
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
13198
13307
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
13199
13308
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
13309
|
+
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
13200
13310
|
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
13201
13311
|
end
|
13202
13312
|
end
|
@@ -15782,6 +15892,18 @@ module Google
|
|
15782
15892
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasJobSpec]
|
15783
15893
|
attr_accessor :nas_job_spec
|
15784
15894
|
|
15895
|
+
# Output only. Reserved for future use.
|
15896
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
15897
|
+
# @return [Boolean]
|
15898
|
+
attr_accessor :satisfies_pzi
|
15899
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
15900
|
+
|
15901
|
+
# Output only. Reserved for future use.
|
15902
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
15903
|
+
# @return [Boolean]
|
15904
|
+
attr_accessor :satisfies_pzs
|
15905
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
15906
|
+
|
15785
15907
|
# Output only. Time when the NasJob for the first time entered the `
|
15786
15908
|
# JOB_STATE_RUNNING` state.
|
15787
15909
|
# Corresponds to the JSON property `startTime`
|
@@ -15814,6 +15936,8 @@ module Google
|
|
15814
15936
|
@name = args[:name] if args.key?(:name)
|
15815
15937
|
@nas_job_output = args[:nas_job_output] if args.key?(:nas_job_output)
|
15816
15938
|
@nas_job_spec = args[:nas_job_spec] if args.key?(:nas_job_spec)
|
15939
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
15940
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
15817
15941
|
@start_time = args[:start_time] if args.key?(:start_time)
|
15818
15942
|
@state = args[:state] if args.key?(:state)
|
15819
15943
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -16638,6 +16762,12 @@ module Google
|
|
16638
16762
|
# @return [String]
|
16639
16763
|
attr_accessor :display_name
|
16640
16764
|
|
16765
|
+
# Represents a customer-managed encryption key spec that can be applied to a top-
|
16766
|
+
# level resource.
|
16767
|
+
# Corresponds to the JSON property `encryptionSpec`
|
16768
|
+
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec]
|
16769
|
+
attr_accessor :encryption_spec
|
16770
|
+
|
16641
16771
|
# Max running time of the execution job in seconds (default 86400s / 24 hrs).
|
16642
16772
|
# Corresponds to the JSON property `executionTimeout`
|
16643
16773
|
# @return [String]
|
@@ -16721,6 +16851,7 @@ module Google
|
|
16721
16851
|
@dataform_repository_source = args[:dataform_repository_source] if args.key?(:dataform_repository_source)
|
16722
16852
|
@direct_notebook_source = args[:direct_notebook_source] if args.key?(:direct_notebook_source)
|
16723
16853
|
@display_name = args[:display_name] if args.key?(:display_name)
|
16854
|
+
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
16724
16855
|
@execution_timeout = args[:execution_timeout] if args.key?(:execution_timeout)
|
16725
16856
|
@execution_user = args[:execution_user] if args.key?(:execution_user)
|
16726
16857
|
@gcs_notebook_source = args[:gcs_notebook_source] if args.key?(:gcs_notebook_source)
|
@@ -18513,6 +18644,12 @@ module Google
|
|
18513
18644
|
# @return [Array<String>]
|
18514
18645
|
attr_accessor :project_allowlist
|
18515
18646
|
|
18647
|
+
# Output only. The name of the generated service attachment resource. This is
|
18648
|
+
# only populated if the endpoint is deployed with PrivateServiceConnect.
|
18649
|
+
# Corresponds to the JSON property `serviceAttachment`
|
18650
|
+
# @return [String]
|
18651
|
+
attr_accessor :service_attachment
|
18652
|
+
|
18516
18653
|
def initialize(**args)
|
18517
18654
|
update!(**args)
|
18518
18655
|
end
|
@@ -18521,6 +18658,7 @@ module Google
|
|
18521
18658
|
def update!(**args)
|
18522
18659
|
@enable_private_service_connect = args[:enable_private_service_connect] if args.key?(:enable_private_service_connect)
|
18523
18660
|
@project_allowlist = args[:project_allowlist] if args.key?(:project_allowlist)
|
18661
|
+
@service_attachment = args[:service_attachment] if args.key?(:service_attachment)
|
18524
18662
|
end
|
18525
18663
|
end
|
18526
18664
|
|
@@ -20442,6 +20580,42 @@ module Google
|
|
20442
20580
|
end
|
20443
20581
|
end
|
20444
20582
|
|
20583
|
+
# A ReservationAffinity can be used to configure a Vertex AI resource (e.g., a
|
20584
|
+
# DeployedModel) to draw its Compute Engine resources from a Shared Reservation,
|
20585
|
+
# or exclusively from on-demand capacity.
|
20586
|
+
class GoogleCloudAiplatformV1ReservationAffinity
|
20587
|
+
include Google::Apis::Core::Hashable
|
20588
|
+
|
20589
|
+
# Optional. Corresponds to the label key of a reservation resource. To target a
|
20590
|
+
# SPECIFIC_RESERVATION by name, use `compute.googleapis.com/reservation-name` as
|
20591
|
+
# the key and specify the name of your reservation as its value.
|
20592
|
+
# Corresponds to the JSON property `key`
|
20593
|
+
# @return [String]
|
20594
|
+
attr_accessor :key
|
20595
|
+
|
20596
|
+
# Required. Specifies the reservation affinity type.
|
20597
|
+
# Corresponds to the JSON property `reservationAffinityType`
|
20598
|
+
# @return [String]
|
20599
|
+
attr_accessor :reservation_affinity_type
|
20600
|
+
|
20601
|
+
# Optional. Corresponds to the label values of a reservation resource. This must
|
20602
|
+
# be the full resource name of the reservation.
|
20603
|
+
# Corresponds to the JSON property `values`
|
20604
|
+
# @return [Array<String>]
|
20605
|
+
attr_accessor :values
|
20606
|
+
|
20607
|
+
def initialize(**args)
|
20608
|
+
update!(**args)
|
20609
|
+
end
|
20610
|
+
|
20611
|
+
# Update properties of this object
|
20612
|
+
def update!(**args)
|
20613
|
+
@key = args[:key] if args.key?(:key)
|
20614
|
+
@reservation_affinity_type = args[:reservation_affinity_type] if args.key?(:reservation_affinity_type)
|
20615
|
+
@values = args[:values] if args.key?(:values)
|
20616
|
+
end
|
20617
|
+
end
|
20618
|
+
|
20445
20619
|
# Represents the spec of a group of resources of the same type, for example
|
20446
20620
|
# machine type, disk, and accelerators, in a PersistentResource.
|
20447
20621
|
class GoogleCloudAiplatformV1ResourcePool
|
@@ -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.31.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240727"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1726,6 +1726,24 @@ module Google
|
|
1726
1726
|
include Google::Apis::Core::JsonObjectSupport
|
1727
1727
|
end
|
1728
1728
|
|
1729
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfig
|
1730
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1731
|
+
|
1732
|
+
include Google::Apis::Core::JsonObjectSupport
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode
|
1736
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1737
|
+
|
1738
|
+
include Google::Apis::Core::JsonObjectSupport
|
1739
|
+
end
|
1740
|
+
|
1741
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode
|
1742
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1743
|
+
|
1744
|
+
include Google::Apis::Core::JsonObjectSupport
|
1745
|
+
end
|
1746
|
+
|
1729
1747
|
class GoogleCloudAiplatformV1GenericOperationMetadata
|
1730
1748
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1731
1749
|
|
@@ -3382,6 +3400,12 @@ module Google
|
|
3382
3400
|
include Google::Apis::Core::JsonObjectSupport
|
3383
3401
|
end
|
3384
3402
|
|
3403
|
+
class GoogleCloudAiplatformV1ReservationAffinity
|
3404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3405
|
+
|
3406
|
+
include Google::Apis::Core::JsonObjectSupport
|
3407
|
+
end
|
3408
|
+
|
3385
3409
|
class GoogleCloudAiplatformV1ResourcePool
|
3386
3410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3387
3411
|
|
@@ -6714,6 +6738,8 @@ module Google
|
|
6714
6738
|
|
6715
6739
|
hash :labels, as: 'labels'
|
6716
6740
|
property :name, as: 'name'
|
6741
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
6742
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
6717
6743
|
property :start_time, as: 'startTime'
|
6718
6744
|
property :state, as: 'state'
|
6719
6745
|
property :update_time, as: 'updateTime'
|
@@ -6846,6 +6872,7 @@ module Google
|
|
6846
6872
|
|
6847
6873
|
property :max_replica_count, as: 'maxReplicaCount'
|
6848
6874
|
property :min_replica_count, as: 'minReplicaCount'
|
6875
|
+
property :spot, as: 'spot'
|
6849
6876
|
end
|
6850
6877
|
end
|
6851
6878
|
|
@@ -8438,7 +8465,8 @@ module Google
|
|
8438
8465
|
property :response_mime_type, as: 'responseMimeType'
|
8439
8466
|
property :response_schema, as: 'responseSchema', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
8440
8467
|
|
8441
|
-
property :
|
8468
|
+
property :routing_config, as: 'routingConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfig::Representation
|
8469
|
+
|
8442
8470
|
collection :stop_sequences, as: 'stopSequences'
|
8443
8471
|
property :temperature, as: 'temperature'
|
8444
8472
|
property :top_k, as: 'topK'
|
@@ -8446,6 +8474,30 @@ module Google
|
|
8446
8474
|
end
|
8447
8475
|
end
|
8448
8476
|
|
8477
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfig
|
8478
|
+
# @private
|
8479
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8480
|
+
property :auto_mode, as: 'autoMode', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode::Representation
|
8481
|
+
|
8482
|
+
property :manual_mode, as: 'manualMode', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode::Representation
|
8483
|
+
|
8484
|
+
end
|
8485
|
+
end
|
8486
|
+
|
8487
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigAutoRoutingMode
|
8488
|
+
# @private
|
8489
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8490
|
+
property :model_routing_preference, as: 'modelRoutingPreference'
|
8491
|
+
end
|
8492
|
+
end
|
8493
|
+
|
8494
|
+
class GoogleCloudAiplatformV1GenerationConfigRoutingConfigManualRoutingMode
|
8495
|
+
# @private
|
8496
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8497
|
+
property :model_name, as: 'modelName'
|
8498
|
+
end
|
8499
|
+
end
|
8500
|
+
|
8449
8501
|
class GoogleCloudAiplatformV1GenericOperationMetadata
|
8450
8502
|
# @private
|
8451
8503
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8567,6 +8619,8 @@ module Google
|
|
8567
8619
|
property :max_trial_count, as: 'maxTrialCount'
|
8568
8620
|
property :name, as: 'name'
|
8569
8621
|
property :parallel_trial_count, as: 'parallelTrialCount'
|
8622
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
8623
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
8570
8624
|
property :start_time, as: 'startTime'
|
8571
8625
|
property :state, as: 'state'
|
8572
8626
|
property :study_spec, as: 'studySpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StudySpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1StudySpec::Representation
|
@@ -9306,6 +9360,8 @@ module Google
|
|
9306
9360
|
property :accelerator_count, as: 'acceleratorCount'
|
9307
9361
|
property :accelerator_type, as: 'acceleratorType'
|
9308
9362
|
property :machine_type, as: 'machineType'
|
9363
|
+
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReservationAffinity, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReservationAffinity::Representation
|
9364
|
+
|
9309
9365
|
property :tpu_topology, as: 'tpuTopology'
|
9310
9366
|
end
|
9311
9367
|
end
|
@@ -9974,6 +10030,8 @@ module Google
|
|
9974
10030
|
|
9975
10031
|
property :nas_job_spec, as: 'nasJobSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasJobSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NasJobSpec::Representation
|
9976
10032
|
|
10033
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
10034
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
9977
10035
|
property :start_time, as: 'startTime'
|
9978
10036
|
property :state, as: 'state'
|
9979
10037
|
property :update_time, as: 'updateTime'
|
@@ -10220,6 +10278,8 @@ module Google
|
|
10220
10278
|
property :direct_notebook_source, as: 'directNotebookSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobDirectNotebookSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobDirectNotebookSource::Representation
|
10221
10279
|
|
10222
10280
|
property :display_name, as: 'displayName'
|
10281
|
+
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec::Representation
|
10282
|
+
|
10223
10283
|
property :execution_timeout, as: 'executionTimeout'
|
10224
10284
|
property :execution_user, as: 'executionUser'
|
10225
10285
|
property :gcs_notebook_source, as: 'gcsNotebookSource', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobGcsNotebookSource, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobGcsNotebookSource::Representation
|
@@ -10691,6 +10751,7 @@ module Google
|
|
10691
10751
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10692
10752
|
property :enable_private_service_connect, as: 'enablePrivateServiceConnect'
|
10693
10753
|
collection :project_allowlist, as: 'projectAllowlist'
|
10754
|
+
property :service_attachment, as: 'serviceAttachment'
|
10694
10755
|
end
|
10695
10756
|
end
|
10696
10757
|
|
@@ -11299,6 +11360,15 @@ module Google
|
|
11299
11360
|
end
|
11300
11361
|
end
|
11301
11362
|
|
11363
|
+
class GoogleCloudAiplatformV1ReservationAffinity
|
11364
|
+
# @private
|
11365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11366
|
+
property :key, as: 'key'
|
11367
|
+
property :reservation_affinity_type, as: 'reservationAffinityType'
|
11368
|
+
collection :values, as: 'values'
|
11369
|
+
end
|
11370
|
+
end
|
11371
|
+
|
11302
11372
|
class GoogleCloudAiplatformV1ResourcePool
|
11303
11373
|
# @private
|
11304
11374
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.31.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1/v0.31.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|