google-apis-aiplatform_v1 0.29.0 → 0.30.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: 2217aa81e73dbbaf86c883e549a8e8c4a65aac8662ca7d3ab86ff703960400aa
|
4
|
+
data.tar.gz: a91c3fb6a562d10dd425bb85a520e756dedad1d93d5f5c06a90846ebec574c2c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cf370fd0ea98fd03499d6dd00400e55b61b065af874358282ca26352ec6b1a942a9b6a687771a157bff86fe41655178876827e968e28ef2caf3a65a932e6086f
|
7
|
+
data.tar.gz: 4e159244b79e10f5187eb4bf7c1efee84d870d334553df5eca53829a2912a83b4e2c1f921274ba0fb16e637545fe9dfc8d573ab4ff6303931e7294f67624e6c5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-aiplatform_v1
|
2
2
|
|
3
|
+
### v0.30.0 (2024-08-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240725
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.29.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240715
|
@@ -62,6 +62,13 @@ module Google
|
|
62
62
|
# @return [String]
|
63
63
|
attr_accessor :encoding
|
64
64
|
|
65
|
+
# Generation seed for the sampled image. This parameter is exposed to the user
|
66
|
+
# only if one of the following is true: 1. The user specified per-example seeds
|
67
|
+
# in the request. 2. The user doesn't specify the generation seed in the request.
|
68
|
+
# Corresponds to the JSON property `generationSeed`
|
69
|
+
# @return [Fixnum]
|
70
|
+
attr_accessor :generation_seed
|
71
|
+
|
65
72
|
# Raw bytes.
|
66
73
|
# Corresponds to the JSON property `image`
|
67
74
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
@@ -100,6 +107,7 @@ module Google
|
|
100
107
|
# Update properties of this object
|
101
108
|
def update!(**args)
|
102
109
|
@encoding = args[:encoding] if args.key?(:encoding)
|
110
|
+
@generation_seed = args[:generation_seed] if args.key?(:generation_seed)
|
103
111
|
@image = args[:image] if args.key?(:image)
|
104
112
|
@image_rai_scores = args[:image_rai_scores] if args.key?(:image_rai_scores)
|
105
113
|
@rai_info = args[:rai_info] if args.key?(:rai_info)
|
@@ -1680,6 +1688,18 @@ module Google
|
|
1680
1688
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcesConsumed]
|
1681
1689
|
attr_accessor :resources_consumed
|
1682
1690
|
|
1691
|
+
# Output only. Reserved for future use.
|
1692
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
1693
|
+
# @return [Boolean]
|
1694
|
+
attr_accessor :satisfies_pzi
|
1695
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
1696
|
+
|
1697
|
+
# Output only. Reserved for future use.
|
1698
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
1699
|
+
# @return [Boolean]
|
1700
|
+
attr_accessor :satisfies_pzs
|
1701
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
1702
|
+
|
1683
1703
|
# The service account that the DeployedModel's container runs as. If not
|
1684
1704
|
# specified, a system generated one will be used, which has minimal permissions
|
1685
1705
|
# and the custom container, if used, may not have enough permission to access
|
@@ -1739,6 +1759,8 @@ module Google
|
|
1739
1759
|
@output_info = args[:output_info] if args.key?(:output_info)
|
1740
1760
|
@partial_failures = args[:partial_failures] if args.key?(:partial_failures)
|
1741
1761
|
@resources_consumed = args[:resources_consumed] if args.key?(:resources_consumed)
|
1762
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
1763
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
1742
1764
|
@service_account = args[:service_account] if args.key?(:service_account)
|
1743
1765
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1744
1766
|
@state = args[:state] if args.key?(:state)
|
@@ -2455,11 +2477,6 @@ module Google
|
|
2455
2477
|
# @return [Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating>]
|
2456
2478
|
attr_accessor :safety_ratings
|
2457
2479
|
|
2458
|
-
# Output only. Confidence score of the candidate.
|
2459
|
-
# Corresponds to the JSON property `score`
|
2460
|
-
# @return [Float]
|
2461
|
-
attr_accessor :score
|
2462
|
-
|
2463
2480
|
def initialize(**args)
|
2464
2481
|
update!(**args)
|
2465
2482
|
end
|
@@ -2473,7 +2490,6 @@ module Google
|
|
2473
2490
|
@grounding_metadata = args[:grounding_metadata] if args.key?(:grounding_metadata)
|
2474
2491
|
@index = args[:index] if args.key?(:index)
|
2475
2492
|
@safety_ratings = args[:safety_ratings] if args.key?(:safety_ratings)
|
2476
|
-
@score = args[:score] if args.key?(:score)
|
2477
2493
|
end
|
2478
2494
|
end
|
2479
2495
|
|
@@ -4077,6 +4093,18 @@ module Google
|
|
4077
4093
|
# @return [Object]
|
4078
4094
|
attr_accessor :payload
|
4079
4095
|
|
4096
|
+
# Output only. Reserved for future use.
|
4097
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
4098
|
+
# @return [Boolean]
|
4099
|
+
attr_accessor :satisfies_pzi
|
4100
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
4101
|
+
|
4102
|
+
# Output only. Reserved for future use.
|
4103
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
4104
|
+
# @return [Boolean]
|
4105
|
+
attr_accessor :satisfies_pzs
|
4106
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
4107
|
+
|
4080
4108
|
# Output only. Timestamp when this DataItem was last updated.
|
4081
4109
|
# Corresponds to the JSON property `updateTime`
|
4082
4110
|
# @return [String]
|
@@ -4093,6 +4121,8 @@ module Google
|
|
4093
4121
|
@labels = args[:labels] if args.key?(:labels)
|
4094
4122
|
@name = args[:name] if args.key?(:name)
|
4095
4123
|
@payload = args[:payload] if args.key?(:payload)
|
4124
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
4125
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
4096
4126
|
@update_time = args[:update_time] if args.key?(:update_time)
|
4097
4127
|
end
|
4098
4128
|
end
|
@@ -4372,6 +4402,18 @@ module Google
|
|
4372
4402
|
# @return [String]
|
4373
4403
|
attr_accessor :name
|
4374
4404
|
|
4405
|
+
# Output only. Reserved for future use.
|
4406
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
4407
|
+
# @return [Boolean]
|
4408
|
+
attr_accessor :satisfies_pzi
|
4409
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
4410
|
+
|
4411
|
+
# Output only. Reserved for future use.
|
4412
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
4413
|
+
# @return [Boolean]
|
4414
|
+
attr_accessor :satisfies_pzs
|
4415
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
4416
|
+
|
4375
4417
|
# All SavedQueries belong to the Dataset will be returned in List/Get Dataset
|
4376
4418
|
# response. The annotation_specs field will not be populated except for UI cases
|
4377
4419
|
# which will only use annotation_spec_count. In CreateDataset request, a
|
@@ -4405,6 +4447,8 @@ module Google
|
|
4405
4447
|
@metadata_schema_uri = args[:metadata_schema_uri] if args.key?(:metadata_schema_uri)
|
4406
4448
|
@model_reference = args[:model_reference] if args.key?(:model_reference)
|
4407
4449
|
@name = args[:name] if args.key?(:name)
|
4450
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
4451
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
4408
4452
|
@saved_queries = args[:saved_queries] if args.key?(:saved_queries)
|
4409
4453
|
@update_time = args[:update_time] if args.key?(:update_time)
|
4410
4454
|
end
|
@@ -4452,6 +4496,18 @@ module Google
|
|
4452
4496
|
# @return [String]
|
4453
4497
|
attr_accessor :name
|
4454
4498
|
|
4499
|
+
# Output only. Reserved for future use.
|
4500
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
4501
|
+
# @return [Boolean]
|
4502
|
+
attr_accessor :satisfies_pzi
|
4503
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
4504
|
+
|
4505
|
+
# Output only. Reserved for future use.
|
4506
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
4507
|
+
# @return [Boolean]
|
4508
|
+
attr_accessor :satisfies_pzs
|
4509
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
4510
|
+
|
4455
4511
|
# Output only. Timestamp when this DatasetVersion was last updated.
|
4456
4512
|
# Corresponds to the JSON property `updateTime`
|
4457
4513
|
# @return [String]
|
@@ -4470,6 +4526,8 @@ module Google
|
|
4470
4526
|
@metadata = args[:metadata] if args.key?(:metadata)
|
4471
4527
|
@model_reference = args[:model_reference] if args.key?(:model_reference)
|
4472
4528
|
@name = args[:name] if args.key?(:name)
|
4529
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
4530
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
4473
4531
|
@update_time = args[:update_time] if args.key?(:update_time)
|
4474
4532
|
end
|
4475
4533
|
end
|
@@ -5309,6 +5367,18 @@ module Google
|
|
5309
5367
|
# @return [String]
|
5310
5368
|
attr_accessor :name
|
5311
5369
|
|
5370
|
+
# Output only. Reserved for future use.
|
5371
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
5372
|
+
# @return [Boolean]
|
5373
|
+
attr_accessor :satisfies_pzi
|
5374
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
5375
|
+
|
5376
|
+
# Output only. Reserved for future use.
|
5377
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
5378
|
+
# @return [Boolean]
|
5379
|
+
attr_accessor :satisfies_pzs
|
5380
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
5381
|
+
|
5312
5382
|
# The service account that the DeploymentResourcePool's container(s) run as.
|
5313
5383
|
# Specify the email address of the service account. If this service account is
|
5314
5384
|
# not specified, the container(s) run as a service account that doesn't have
|
@@ -5330,6 +5400,8 @@ module Google
|
|
5330
5400
|
@disable_container_logging = args[:disable_container_logging] if args.key?(:disable_container_logging)
|
5331
5401
|
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
5332
5402
|
@name = args[:name] if args.key?(:name)
|
5403
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
5404
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
5333
5405
|
@service_account = args[:service_account] if args.key?(:service_account)
|
5334
5406
|
end
|
5335
5407
|
end
|
@@ -5636,6 +5708,18 @@ module Google
|
|
5636
5708
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PrivateServiceConnectConfig]
|
5637
5709
|
attr_accessor :private_service_connect_config
|
5638
5710
|
|
5711
|
+
# Output only. Reserved for future use.
|
5712
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
5713
|
+
# @return [Boolean]
|
5714
|
+
attr_accessor :satisfies_pzi
|
5715
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
5716
|
+
|
5717
|
+
# Output only. Reserved for future use.
|
5718
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
5719
|
+
# @return [Boolean]
|
5720
|
+
attr_accessor :satisfies_pzs
|
5721
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
5722
|
+
|
5639
5723
|
# A map from a DeployedModel's ID to the percentage of this Endpoint's traffic
|
5640
5724
|
# that should be forwarded to that DeployedModel. If a DeployedModel's ID is not
|
5641
5725
|
# listed in this map, then it receives no traffic. The traffic percentage values
|
@@ -5671,6 +5755,8 @@ module Google
|
|
5671
5755
|
@network = args[:network] if args.key?(:network)
|
5672
5756
|
@predict_request_response_logging_config = args[:predict_request_response_logging_config] if args.key?(:predict_request_response_logging_config)
|
5673
5757
|
@private_service_connect_config = args[:private_service_connect_config] if args.key?(:private_service_connect_config)
|
5758
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
5759
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
5674
5760
|
@traffic_split = args[:traffic_split] if args.key?(:traffic_split)
|
5675
5761
|
@update_time = args[:update_time] if args.key?(:update_time)
|
5676
5762
|
end
|
@@ -10205,6 +10291,11 @@ module Google
|
|
10205
10291
|
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema]
|
10206
10292
|
attr_accessor :response_schema
|
10207
10293
|
|
10294
|
+
# Optional. Seed.
|
10295
|
+
# Corresponds to the JSON property `seed`
|
10296
|
+
# @return [Fixnum]
|
10297
|
+
attr_accessor :seed
|
10298
|
+
|
10208
10299
|
# Optional. Stop sequences.
|
10209
10300
|
# Corresponds to the JSON property `stopSequences`
|
10210
10301
|
# @return [Array<String>]
|
@@ -10237,6 +10328,7 @@ module Google
|
|
10237
10328
|
@presence_penalty = args[:presence_penalty] if args.key?(:presence_penalty)
|
10238
10329
|
@response_mime_type = args[:response_mime_type] if args.key?(:response_mime_type)
|
10239
10330
|
@response_schema = args[:response_schema] if args.key?(:response_schema)
|
10331
|
+
@seed = args[:seed] if args.key?(:seed)
|
10240
10332
|
@stop_sequences = args[:stop_sequences] if args.key?(:stop_sequences)
|
10241
10333
|
@temperature = args[:temperature] if args.key?(:temperature)
|
10242
10334
|
@top_k = args[:top_k] if args.key?(:top_k)
|
@@ -17494,11 +17586,6 @@ module Google
|
|
17494
17586
|
# @return [String]
|
17495
17587
|
attr_accessor :network
|
17496
17588
|
|
17497
|
-
# Configuration for PSC-I.
|
17498
|
-
# Corresponds to the JSON property `pscInterfaceConfig`
|
17499
|
-
# @return [Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig]
|
17500
|
-
attr_accessor :psc_interface_config
|
17501
|
-
|
17502
17589
|
# Optional. A list of names for the reserved IP ranges under the VPC network
|
17503
17590
|
# that can be used for this persistent resource. If set, we will deploy the
|
17504
17591
|
# persistent resource within the provided IP ranges. Otherwise, the persistent
|
@@ -17554,7 +17641,6 @@ module Google
|
|
17554
17641
|
@labels = args[:labels] if args.key?(:labels)
|
17555
17642
|
@name = args[:name] if args.key?(:name)
|
17556
17643
|
@network = args[:network] if args.key?(:network)
|
17557
|
-
@psc_interface_config = args[:psc_interface_config] if args.key?(:psc_interface_config)
|
17558
17644
|
@reserved_ip_ranges = args[:reserved_ip_ranges] if args.key?(:reserved_ip_ranges)
|
17559
17645
|
@resource_pools = args[:resource_pools] if args.key?(:resource_pools)
|
17560
17646
|
@resource_runtime = args[:resource_runtime] if args.key?(:resource_runtime)
|
@@ -18530,33 +18616,6 @@ module Google
|
|
18530
18616
|
end
|
18531
18617
|
end
|
18532
18618
|
|
18533
|
-
# Configuration for PSC-I.
|
18534
|
-
class GoogleCloudAiplatformV1PscInterfaceConfig
|
18535
|
-
include Google::Apis::Core::Hashable
|
18536
|
-
|
18537
|
-
# Optional. The full name of the Compute Engine [network attachment](https://
|
18538
|
-
# cloud.google.com/vpc/docs/about-network-attachments) to attach to the resource.
|
18539
|
-
# For example, `projects/12345/regions/us-central1/networkAttachments/myNA`. is
|
18540
|
-
# of the form `projects/`project`/regions/`region`/networkAttachments/`
|
18541
|
-
# networkAttachment``. Where `project` is a project number, as in `12345`, and `
|
18542
|
-
# networkAttachment` is a network attachment name. To specify this field, you
|
18543
|
-
# must have already [created a network attachment] (https://cloud.google.com/vpc/
|
18544
|
-
# docs/create-manage-network-attachments#create-network-attachments). This field
|
18545
|
-
# is only used for resources using PSC-I.
|
18546
|
-
# Corresponds to the JSON property `networkAttachment`
|
18547
|
-
# @return [String]
|
18548
|
-
attr_accessor :network_attachment
|
18549
|
-
|
18550
|
-
def initialize(**args)
|
18551
|
-
update!(**args)
|
18552
|
-
end
|
18553
|
-
|
18554
|
-
# Update properties of this object
|
18555
|
-
def update!(**args)
|
18556
|
-
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
18557
|
-
end
|
18558
|
-
end
|
18559
|
-
|
18560
18619
|
# A Model Garden Publisher Model.
|
18561
18620
|
class GoogleCloudAiplatformV1PublisherModel
|
18562
18621
|
include Google::Apis::Core::Hashable
|
@@ -18827,6 +18886,11 @@ module Google
|
|
18827
18886
|
# @return [Hash<String,String>]
|
18828
18887
|
attr_accessor :labels
|
18829
18888
|
|
18889
|
+
# Optional. Sample request for deployed endpoint.
|
18890
|
+
# Corresponds to the JSON property `sampleRequest`
|
18891
|
+
# @return [String]
|
18892
|
+
attr_accessor :sample_request
|
18893
|
+
|
18830
18894
|
def initialize(**args)
|
18831
18895
|
update!(**args)
|
18832
18896
|
end
|
@@ -18834,6 +18898,7 @@ module Google
|
|
18834
18898
|
# Update properties of this object
|
18835
18899
|
def update!(**args)
|
18836
18900
|
@labels = args[:labels] if args.key?(:labels)
|
18901
|
+
@sample_request = args[:sample_request] if args.key?(:sample_request)
|
18837
18902
|
end
|
18838
18903
|
end
|
18839
18904
|
|
@@ -31337,7 +31402,7 @@ module Google
|
|
31337
31402
|
end
|
31338
31403
|
end
|
31339
31404
|
|
31340
|
-
#
|
31405
|
+
#
|
31341
31406
|
class GoogleCloudAiplatformV1TrialContext
|
31342
31407
|
include Google::Apis::Core::Hashable
|
31343
31408
|
|
@@ -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.30.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240725"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3010,12 +3010,6 @@ module Google
|
|
3010
3010
|
include Google::Apis::Core::JsonObjectSupport
|
3011
3011
|
end
|
3012
3012
|
|
3013
|
-
class GoogleCloudAiplatformV1PscInterfaceConfig
|
3014
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3015
|
-
|
3016
|
-
include Google::Apis::Core::JsonObjectSupport
|
3017
|
-
end
|
3018
|
-
|
3019
3013
|
class GoogleCloudAiplatformV1PublisherModel
|
3020
3014
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3021
3015
|
|
@@ -5562,6 +5556,7 @@ module Google
|
|
5562
5556
|
# @private
|
5563
5557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
5564
5558
|
property :encoding, as: 'encoding'
|
5559
|
+
property :generation_seed, as: 'generationSeed'
|
5565
5560
|
property :image, :base64 => true, as: 'image'
|
5566
5561
|
property :image_rai_scores, as: 'imageRaiScores', class: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImageRaiScores, decorator: Google::Apis::AiplatformV1::CloudAiLargeModelsVisionImageRaiScores::Representation
|
5567
5562
|
|
@@ -6026,6 +6021,8 @@ module Google
|
|
6026
6021
|
|
6027
6022
|
property :resources_consumed, as: 'resourcesConsumed', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcesConsumed, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcesConsumed::Representation
|
6028
6023
|
|
6024
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
6025
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
6029
6026
|
property :service_account, as: 'serviceAccount'
|
6030
6027
|
property :start_time, as: 'startTime'
|
6031
6028
|
property :state, as: 'state'
|
@@ -6271,7 +6268,6 @@ module Google
|
|
6271
6268
|
property :index, as: 'index'
|
6272
6269
|
collection :safety_ratings, as: 'safetyRatings', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SafetyRating::Representation
|
6273
6270
|
|
6274
|
-
property :score, as: 'score'
|
6275
6271
|
end
|
6276
6272
|
end
|
6277
6273
|
|
@@ -6756,6 +6752,8 @@ module Google
|
|
6756
6752
|
hash :labels, as: 'labels'
|
6757
6753
|
property :name, as: 'name'
|
6758
6754
|
property :payload, as: 'payload'
|
6755
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
6756
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
6759
6757
|
property :update_time, as: 'updateTime'
|
6760
6758
|
end
|
6761
6759
|
end
|
@@ -6815,6 +6813,8 @@ module Google
|
|
6815
6813
|
property :metadata_schema_uri, as: 'metadataSchemaUri'
|
6816
6814
|
property :model_reference, as: 'modelReference'
|
6817
6815
|
property :name, as: 'name'
|
6816
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
6817
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
6818
6818
|
collection :saved_queries, as: 'savedQueries', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SavedQuery, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SavedQuery::Representation
|
6819
6819
|
|
6820
6820
|
property :update_time, as: 'updateTime'
|
@@ -6831,6 +6831,8 @@ module Google
|
|
6831
6831
|
property :metadata, as: 'metadata'
|
6832
6832
|
property :model_reference, as: 'modelReference'
|
6833
6833
|
property :name, as: 'name'
|
6834
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
6835
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
6834
6836
|
property :update_time, as: 'updateTime'
|
6835
6837
|
end
|
6836
6838
|
end
|
@@ -7066,6 +7068,8 @@ module Google
|
|
7066
7068
|
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EncryptionSpec::Representation
|
7067
7069
|
|
7068
7070
|
property :name, as: 'name'
|
7071
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
7072
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
7069
7073
|
property :service_account, as: 'serviceAccount'
|
7070
7074
|
end
|
7071
7075
|
end
|
@@ -7157,6 +7161,8 @@ module Google
|
|
7157
7161
|
|
7158
7162
|
property :private_service_connect_config, as: 'privateServiceConnectConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PrivateServiceConnectConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PrivateServiceConnectConfig::Representation
|
7159
7163
|
|
7164
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
7165
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
7160
7166
|
hash :traffic_split, as: 'trafficSplit'
|
7161
7167
|
property :update_time, as: 'updateTime'
|
7162
7168
|
end
|
@@ -8432,6 +8438,7 @@ module Google
|
|
8432
8438
|
property :response_mime_type, as: 'responseMimeType'
|
8433
8439
|
property :response_schema, as: 'responseSchema', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Schema::Representation
|
8434
8440
|
|
8441
|
+
property :seed, as: 'seed'
|
8435
8442
|
collection :stop_sequences, as: 'stopSequences'
|
8436
8443
|
property :temperature, as: 'temperature'
|
8437
8444
|
property :top_k, as: 'topK'
|
@@ -10454,8 +10461,6 @@ module Google
|
|
10454
10461
|
hash :labels, as: 'labels'
|
10455
10462
|
property :name, as: 'name'
|
10456
10463
|
property :network, as: 'network'
|
10457
|
-
property :psc_interface_config, as: 'pscInterfaceConfig', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PscInterfaceConfig::Representation
|
10458
|
-
|
10459
10464
|
collection :reserved_ip_ranges, as: 'reservedIpRanges'
|
10460
10465
|
collection :resource_pools, as: 'resourcePools', class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool, decorator: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ResourcePool::Representation
|
10461
10466
|
|
@@ -10715,13 +10720,6 @@ module Google
|
|
10715
10720
|
end
|
10716
10721
|
end
|
10717
10722
|
|
10718
|
-
class GoogleCloudAiplatformV1PscInterfaceConfig
|
10719
|
-
# @private
|
10720
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
10721
|
-
property :network_attachment, as: 'networkAttachment'
|
10722
|
-
end
|
10723
|
-
end
|
10724
|
-
|
10725
10723
|
class GoogleCloudAiplatformV1PublisherModel
|
10726
10724
|
# @private
|
10727
10725
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10797,6 +10795,7 @@ module Google
|
|
10797
10795
|
# @private
|
10798
10796
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10799
10797
|
hash :labels, as: 'labels'
|
10798
|
+
property :sample_request, as: 'sampleRequest'
|
10800
10799
|
end
|
10801
10800
|
end
|
10802
10801
|
|
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.30.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-
|
11
|
+
date: 2024-08-04 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.30.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: []
|