google-apis-aiplatform_v1beta1 0.2.0 → 0.3.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: 3b9fdd954a333cfc05b95b33e94327ae388fced8adc62bb0f7b774d2d55e424f
4
- data.tar.gz: 735e5bb4ff3829f1f8e86a2a401b35d8f62a1c011a684569a9f2dc104abf3722
3
+ metadata.gz: 33393b7a71a36671153beadfcb4a3ed4f72ef22c6cf88a2962bfda5c6f18d07c
4
+ data.tar.gz: 4a61552e3d6683e5c9e3841d372ea61b11acba8ee909c50c8add87041625af07
5
5
  SHA512:
6
- metadata.gz: 1196a9320280687d1a7e7a39909194a6348584cccd5c0cd8386b1ca50d4fd45e904a247978b2cada599ce4908c94b7b822b3de7f4645d007d2f8a27790826a5f
7
- data.tar.gz: 3b69b7286ba5a5043137072ac644013c76847de06a7aca39b14d92ee620813174af447b07feb54473c74620b9d56da8fbd8e0d63824793d79f9695dd2a52bf69
6
+ metadata.gz: cef2392b50240e038ab399b0b1292a203cdc7b1971e4f9748e024b677c1dac8d50279b705d1f96e5954209206d856507f7049d0952f405958215df81fbaad557
7
+ data.tar.gz: 6e2947af797d7acc24351367c2bc745d9dc805bfdd51fbd9979194710df6489f7230867b4206723712ddecda9d772d282502cac28cc4d2e9024f48e16bec36d7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.3.0 (2023-09-17)
4
+
5
+ * Regenerated from discovery document revision 20230908
6
+
3
7
  ### v0.2.0 (2023-08-27)
4
8
 
5
9
  * Regenerated from discovery document revision 20230812
@@ -2443,8 +2443,7 @@ module Google
2443
2443
  end
2444
2444
  end
2445
2445
 
2446
- # Request message for FeaturestoreService.CreateFeature and
2447
- # FeatureRegistryService.CreateFeature.
2446
+ # Request message for FeaturestoreService.CreateFeature.
2448
2447
  class GoogleCloudAiplatformV1beta1CreateFeatureRequest
2449
2448
  include Google::Apis::Core::Hashable
2450
2449
 
@@ -2458,15 +2457,14 @@ module Google
2458
2457
  # Required. The ID to use for the Feature, which will become the final component
2459
2458
  # of the Feature's resource name. This value may be up to 128 characters, and
2460
2459
  # valid characters are `[a-z0-9_]`. The first character cannot be a number. The
2461
- # value must be unique within an EntityType/FeatureGroup.
2460
+ # value must be unique within an EntityType .
2462
2461
  # Corresponds to the JSON property `featureId`
2463
2462
  # @return [String]
2464
2463
  attr_accessor :feature_id
2465
2464
 
2466
- # Required. The resource name of the EntityType or FeatureGroup to create a
2467
- # Feature. Format: `projects/`project`/locations/`location`/featurestores/`
2468
- # featurestore`/entityTypes/`entity_type`` `projects/`project`/locations/`
2469
- # location`/featureGroups/`feature_group``
2465
+ # Required. The resource name of the EntityType to create a Feature. Format: `
2466
+ # projects/`project`/locations/`location`/featurestores/`featurestore`/
2467
+ # entityTypes/`entity_type``
2470
2468
  # Corresponds to the JSON property `parent`
2471
2469
  # @return [String]
2472
2470
  attr_accessor :parent
@@ -5757,6 +5755,63 @@ module Google
5757
5755
  end
5758
5756
  end
5759
5757
 
5758
+ # Details of EndpointService.ExportEndpoint operation.
5759
+ class GoogleCloudAiplatformV1beta1ExportEndpointOperationMetadata
5760
+ include Google::Apis::Core::Hashable
5761
+
5762
+ # Generic Metadata shared by all operations.
5763
+ # Corresponds to the JSON property `genericMetadata`
5764
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
5765
+ attr_accessor :generic_metadata
5766
+
5767
+ def initialize(**args)
5768
+ update!(**args)
5769
+ end
5770
+
5771
+ # Update properties of this object
5772
+ def update!(**args)
5773
+ @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
5774
+ end
5775
+ end
5776
+
5777
+ # Response message of EndpointService.ExportEndpoint operation.
5778
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponse
5779
+ include Google::Apis::Core::Hashable
5780
+
5781
+ # Describes the output of the ExportEndpoint.
5782
+ # Corresponds to the JSON property `outputInfo`
5783
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo]
5784
+ attr_accessor :output_info
5785
+
5786
+ def initialize(**args)
5787
+ update!(**args)
5788
+ end
5789
+
5790
+ # Update properties of this object
5791
+ def update!(**args)
5792
+ @output_info = args[:output_info] if args.key?(:output_info)
5793
+ end
5794
+ end
5795
+
5796
+ # Describes the output of the ExportEndpoint.
5797
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo
5798
+ include Google::Apis::Core::Hashable
5799
+
5800
+ # The BigQuery location for the output content.
5801
+ # Corresponds to the JSON property `bigQueryDestination`
5802
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination]
5803
+ attr_accessor :big_query_destination
5804
+
5805
+ def initialize(**args)
5806
+ update!(**args)
5807
+ end
5808
+
5809
+ # Update properties of this object
5810
+ def update!(**args)
5811
+ @big_query_destination = args[:big_query_destination] if args.key?(:big_query_destination)
5812
+ end
5813
+ end
5814
+
5760
5815
  # Details of operations that exports Features values.
5761
5816
  class GoogleCloudAiplatformV1beta1ExportFeatureValuesOperationMetadata
5762
5817
  include Google::Apis::Core::Hashable
@@ -6191,7 +6246,7 @@ module Google
6191
6246
  # @return [String]
6192
6247
  attr_accessor :update_time
6193
6248
 
6194
- # Required. Immutable. Type of Feature value.
6249
+ # Immutable. Type of Feature value.
6195
6250
  # Corresponds to the JSON property `valueType`
6196
6251
  # @return [String]
6197
6252
  attr_accessor :value_type
@@ -7767,6 +7822,12 @@ module Google
7767
7822
  # @return [String]
7768
7823
  attr_accessor :display_name
7769
7824
 
7825
+ # Represents a customer-managed encryption key spec that can be applied to a top-
7826
+ # level resource.
7827
+ # Corresponds to the JSON property `encryptionSpec`
7828
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
7829
+ attr_accessor :encryption_spec
7830
+
7770
7831
  # Used to perform consistent read-modify-write updates. If not set, a blind "
7771
7832
  # overwrite" update happens.
7772
7833
  # Corresponds to the JSON property `etag`
@@ -7836,6 +7897,7 @@ module Google
7836
7897
  @deployed_indexes = args[:deployed_indexes] if args.key?(:deployed_indexes)
7837
7898
  @description = args[:description] if args.key?(:description)
7838
7899
  @display_name = args[:display_name] if args.key?(:display_name)
7900
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
7839
7901
  @etag = args[:etag] if args.key?(:etag)
7840
7902
  @index_stats = args[:index_stats] if args.key?(:index_stats)
7841
7903
  @index_update_method = args[:index_update_method] if args.key?(:index_update_method)
@@ -7871,8 +7933,8 @@ module Google
7871
7933
 
7872
7934
  # Optional. List of Restrict of the datapoint, used to perform "restricted
7873
7935
  # searches" where boolean rule are used to filter the subset of the database
7874
- # eligible for matching. See: https://cloud.google.com/vertex-ai/docs/matching-
7875
- # engine/filtering
7936
+ # eligible for matching. This uses categorical tokens. See: https://cloud.google.
7937
+ # com/vertex-ai/docs/matching-engine/filtering
7876
7938
  # Corresponds to the JSON property `restricts`
7877
7939
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexDatapointRestriction>]
7878
7940
  attr_accessor :restricts
@@ -7920,17 +7982,17 @@ module Google
7920
7982
  class GoogleCloudAiplatformV1beta1IndexDatapointRestriction
7921
7983
  include Google::Apis::Core::Hashable
7922
7984
 
7923
- # The attributes to allow in this namespace. eg: 'red'
7985
+ # The attributes to allow in this namespace. e.g.: 'red'
7924
7986
  # Corresponds to the JSON property `allowList`
7925
7987
  # @return [Array<String>]
7926
7988
  attr_accessor :allow_list
7927
7989
 
7928
- # The attributes to deny in this namespace. eg: 'blue'
7990
+ # The attributes to deny in this namespace. e.g.: 'blue'
7929
7991
  # Corresponds to the JSON property `denyList`
7930
7992
  # @return [Array<String>]
7931
7993
  attr_accessor :deny_list
7932
7994
 
7933
- # The namespace of this restriction. eg: color.
7995
+ # The namespace of this restriction. e.g.: color.
7934
7996
  # Corresponds to the JSON property `namespace`
7935
7997
  # @return [String]
7936
7998
  attr_accessor :namespace
@@ -7981,6 +8043,12 @@ module Google
7981
8043
  attr_accessor :enable_private_service_connect
7982
8044
  alias_method :enable_private_service_connect?, :enable_private_service_connect
7983
8045
 
8046
+ # Represents a customer-managed encryption key spec that can be applied to a top-
8047
+ # level resource.
8048
+ # Corresponds to the JSON property `encryptionSpec`
8049
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec]
8050
+ attr_accessor :encryption_spec
8051
+
7984
8052
  # Used to perform consistent read-modify-write updates. If not set, a blind "
7985
8053
  # overwrite" update happens.
7986
8054
  # Corresponds to the JSON property `etag`
@@ -8049,6 +8117,7 @@ module Google
8049
8117
  @description = args[:description] if args.key?(:description)
8050
8118
  @display_name = args[:display_name] if args.key?(:display_name)
8051
8119
  @enable_private_service_connect = args[:enable_private_service_connect] if args.key?(:enable_private_service_connect)
8120
+ @encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
8052
8121
  @etag = args[:etag] if args.key?(:etag)
8053
8122
  @labels = args[:labels] if args.key?(:labels)
8054
8123
  @name = args[:name] if args.key?(:name)
@@ -8676,8 +8745,7 @@ module Google
8676
8745
  end
8677
8746
  end
8678
8747
 
8679
- # Response message for FeaturestoreService.ListFeatures. Response message for
8680
- # FeatureRegistryService.ListFeatures.
8748
+ # Response message for FeaturestoreService.ListFeatures.
8681
8749
  class GoogleCloudAiplatformV1beta1ListFeaturesResponse
8682
8750
  include Google::Apis::Core::Hashable
8683
8751
 
@@ -12597,6 +12665,11 @@ module Google
12597
12665
  # @return [String]
12598
12666
  attr_accessor :update_time
12599
12667
 
12668
+ # Output only. The VM os image version of NotebookRuntime.
12669
+ # Corresponds to the JSON property `version`
12670
+ # @return [String]
12671
+ attr_accessor :version
12672
+
12600
12673
  def initialize(**args)
12601
12674
  update!(**args)
12602
12675
  end
@@ -12615,6 +12688,7 @@ module Google
12615
12688
  @runtime_user = args[:runtime_user] if args.key?(:runtime_user)
12616
12689
  @service_account = args[:service_account] if args.key?(:service_account)
12617
12690
  @update_time = args[:update_time] if args.key?(:update_time)
12691
+ @version = args[:version] if args.key?(:version)
12618
12692
  end
12619
12693
  end
12620
12694
 
@@ -14505,10 +14579,12 @@ module Google
14505
14579
  class GoogleCloudAiplatformV1beta1RaySpec
14506
14580
  include Google::Apis::Core::Hashable
14507
14581
 
14508
- # Specification of a single machine.
14509
- # Corresponds to the JSON property `headMachineSpec`
14510
- # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
14511
- attr_accessor :head_machine_spec
14582
+ # Optional. This will be used to indicate which resource pool will serve as the
14583
+ # Ray head node(the first node within that pool). Will use the machine from the
14584
+ # first workerpool as the head node by default if this field is not set.
14585
+ # Corresponds to the JSON property `headNodeResourcePoolId`
14586
+ # @return [String]
14587
+ attr_accessor :head_node_resource_pool_id
14512
14588
 
14513
14589
  # Optional. Default image for user to choose a preferred ML framework(e.g.
14514
14590
  # tensorflow or Pytorch) by choosing from Vertex prebuild images(https://cloud.
@@ -14520,14 +14596,24 @@ module Google
14520
14596
  # @return [String]
14521
14597
  attr_accessor :image_uri
14522
14598
 
14599
+ # Optional. Required if image_uri is not set. A map of resource_pool_id to
14600
+ # prebuild Ray image if user need to use different images for different head/
14601
+ # worker pools. This map needs to cover all the resource pool ids. Example: ` "
14602
+ # ray_head_node_pool": "head image" "ray_worker_node_pool1": "worker image" "
14603
+ # ray_worker_node_pool2": "another worker image" `
14604
+ # Corresponds to the JSON property `resourcePoolImages`
14605
+ # @return [Hash<String,String>]
14606
+ attr_accessor :resource_pool_images
14607
+
14523
14608
  def initialize(**args)
14524
14609
  update!(**args)
14525
14610
  end
14526
14611
 
14527
14612
  # Update properties of this object
14528
14613
  def update!(**args)
14529
- @head_machine_spec = args[:head_machine_spec] if args.key?(:head_machine_spec)
14614
+ @head_node_resource_pool_id = args[:head_node_resource_pool_id] if args.key?(:head_node_resource_pool_id)
14530
14615
  @image_uri = args[:image_uri] if args.key?(:image_uri)
14616
+ @resource_pool_images = args[:resource_pool_images] if args.key?(:resource_pool_images)
14531
14617
  end
14532
14618
  end
14533
14619
 
@@ -15057,6 +15143,14 @@ module Google
15057
15143
  # @return [Hash<String,String>]
15058
15144
  attr_accessor :access_uris
15059
15145
 
15146
+ # Output only. The resource name of NotebookRuntimeTemplate for the RoV
15147
+ # Persistent Cluster The NotebokRuntimeTemplate is created in the same VPC (if
15148
+ # set), and with the same Ray and Python version as the Persistent Cluster.
15149
+ # Example: "projects/1000/locations/us-central1/notebookRuntimeTemplates/abc123"
15150
+ # Corresponds to the JSON property `notebookRuntimeTemplate`
15151
+ # @return [String]
15152
+ attr_accessor :notebook_runtime_template
15153
+
15060
15154
  def initialize(**args)
15061
15155
  update!(**args)
15062
15156
  end
@@ -15064,6 +15158,7 @@ module Google
15064
15158
  # Update properties of this object
15065
15159
  def update!(**args)
15066
15160
  @access_uris = args[:access_uris] if args.key?(:access_uris)
15161
+ @notebook_runtime_template = args[:notebook_runtime_template] if args.key?(:notebook_runtime_template)
15067
15162
  end
15068
15163
  end
15069
15164
 
@@ -22778,6 +22873,36 @@ module Google
22778
22873
  # @return [String]
22779
22874
  attr_accessor :client_id
22780
22875
 
22876
+ # Optional. This allows you to specify the "context" for a Trial; a context is a
22877
+ # slice (a subspace) of the search space. Typical uses for contexts: 1) You are
22878
+ # using Vizier to tune a server for best performance, but there's a strong
22879
+ # weekly cycle. The context specifies the day-of-week. This allows Tuesday to
22880
+ # generalize from Wednesday without assuming that everything is identical. 2)
22881
+ # Imagine you're optimizing some medical treatment for people. As they walk in
22882
+ # the door, you know certain facts about them (e.g. sex, weight, height, blood-
22883
+ # pressure). Put that information in the context, and Vizier will adapt its
22884
+ # suggestions to the patient. 3) You want to do a fair A/B test efficiently.
22885
+ # Specify the "A" and "B" conditions as contexts, and Vizier will generalize
22886
+ # between "A" and "B" conditions. If they are similar, this will allow Vizier to
22887
+ # converge to the optimum faster than if "A" and "B" were separate Studies. NOTE:
22888
+ # You can also enter contexts as REQUESTED Trials, e.g. via the CreateTrial()
22889
+ # RPC; that's the asynchronous option where you don't need a close association
22890
+ # between contexts and suggestions. NOTE: All the Parameters you set in a
22891
+ # context MUST be defined in the Study. NOTE: You must supply 0 or $
22892
+ # suggestion_count contexts. If you don't supply any contexts, Vizier will make
22893
+ # suggestions from the full search space specified in the StudySpec; if you
22894
+ # supply a full set of context, each suggestion will match the corresponding
22895
+ # context. NOTE: A Context with no features set matches anything, and allows
22896
+ # suggestions from the full search space. NOTE: Contexts MUST lie within the
22897
+ # search space specified in the StudySpec. It's an error if they don't. NOTE:
22898
+ # Contexts preferentially match ACTIVE then REQUESTED trials before new
22899
+ # suggestions are generated. NOTE: Generation of suggestions involves a match
22900
+ # between a Context and (optionally) a REQUESTED trial; if that match is not
22901
+ # fully specified, a suggestion will be geneated in the merged subspace.
22902
+ # Corresponds to the JSON property `contexts`
22903
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialContext>]
22904
+ attr_accessor :contexts
22905
+
22781
22906
  # Required. The number of suggestions requested. It must be positive.
22782
22907
  # Corresponds to the JSON property `suggestionCount`
22783
22908
  # @return [Fixnum]
@@ -22790,6 +22915,7 @@ module Google
22790
22915
  # Update properties of this object
22791
22916
  def update!(**args)
22792
22917
  @client_id = args[:client_id] if args.key?(:client_id)
22918
+ @contexts = args[:contexts] if args.key?(:contexts)
22793
22919
  @suggestion_count = args[:suggestion_count] if args.key?(:suggestion_count)
22794
22920
  end
22795
22921
  end
@@ -23796,6 +23922,38 @@ module Google
23796
23922
  end
23797
23923
  end
23798
23924
 
23925
+ # Next ID: 3
23926
+ class GoogleCloudAiplatformV1beta1TrialContext
23927
+ include Google::Apis::Core::Hashable
23928
+
23929
+ # A human-readable field which can store a description of this context. This
23930
+ # will become part of the resulting Trial's description field.
23931
+ # Corresponds to the JSON property `description`
23932
+ # @return [String]
23933
+ attr_accessor :description
23934
+
23935
+ # If/when a Trial is generated or selected from this Context, its Parameters
23936
+ # will match any parameters specified here. (I.e. if this context specifies
23937
+ # parameter name:'a' int_value:3, then a resulting Trial will have int_value:3
23938
+ # for its parameter named 'a'.) Note that we first attempt to match existing
23939
+ # REQUESTED Trials with contexts, and if there are no matches, we generate
23940
+ # suggestions in the subspace defined by the parameters specified here. NOTE: a
23941
+ # Context without any Parameters matches the entire feasible search space.
23942
+ # Corresponds to the JSON property `parameters`
23943
+ # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialParameter>]
23944
+ attr_accessor :parameters
23945
+
23946
+ def initialize(**args)
23947
+ update!(**args)
23948
+ end
23949
+
23950
+ # Update properties of this object
23951
+ def update!(**args)
23952
+ @description = args[:description] if args.key?(:description)
23953
+ @parameters = args[:parameters] if args.key?(:parameters)
23954
+ end
23955
+ end
23956
+
23799
23957
  # A message representing a parameter to be tuned.
23800
23958
  class GoogleCloudAiplatformV1beta1TrialParameter
23801
23959
  include Google::Apis::Core::Hashable
@@ -24129,6 +24287,25 @@ module Google
24129
24287
  end
24130
24288
  end
24131
24289
 
24290
+ # Details of operations that perform update PersistentResource.
24291
+ class GoogleCloudAiplatformV1beta1UpdatePersistentResourceOperationMetadata
24292
+ include Google::Apis::Core::Hashable
24293
+
24294
+ # Generic Metadata shared by all operations.
24295
+ # Corresponds to the JSON property `genericMetadata`
24296
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata]
24297
+ attr_accessor :generic_metadata
24298
+
24299
+ def initialize(**args)
24300
+ update!(**args)
24301
+ end
24302
+
24303
+ # Update properties of this object
24304
+ def update!(**args)
24305
+ @generic_metadata = args[:generic_metadata] if args.key?(:generic_metadata)
24306
+ end
24307
+ end
24308
+
24132
24309
  # Runtime operation metadata for SpecialistPoolService.UpdateSpecialistPool.
24133
24310
  class GoogleCloudAiplatformV1beta1UpdateSpecialistPoolOperationMetadata
24134
24311
  include Google::Apis::Core::Hashable
@@ -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.2.0"
19
+ GEM_VERSION = "0.3.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230812"
25
+ REVISION = "20230908"
26
26
  end
27
27
  end
28
28
  end
@@ -970,6 +970,24 @@ module Google
970
970
  include Google::Apis::Core::JsonObjectSupport
971
971
  end
972
972
 
973
+ class GoogleCloudAiplatformV1beta1ExportEndpointOperationMetadata
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
979
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponse
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
985
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo
986
+ class Representation < Google::Apis::Core::JsonRepresentation; end
987
+
988
+ include Google::Apis::Core::JsonObjectSupport
989
+ end
990
+
973
991
  class GoogleCloudAiplatformV1beta1ExportFeatureValuesOperationMetadata
974
992
  class Representation < Google::Apis::Core::JsonRepresentation; end
975
993
 
@@ -3874,6 +3892,12 @@ module Google
3874
3892
  include Google::Apis::Core::JsonObjectSupport
3875
3893
  end
3876
3894
 
3895
+ class GoogleCloudAiplatformV1beta1TrialContext
3896
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3897
+
3898
+ include Google::Apis::Core::JsonObjectSupport
3899
+ end
3900
+
3877
3901
  class GoogleCloudAiplatformV1beta1TrialParameter
3878
3902
  class Representation < Google::Apis::Core::JsonRepresentation; end
3879
3903
 
@@ -3970,6 +3994,12 @@ module Google
3970
3994
  include Google::Apis::Core::JsonObjectSupport
3971
3995
  end
3972
3996
 
3997
+ class GoogleCloudAiplatformV1beta1UpdatePersistentResourceOperationMetadata
3998
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3999
+
4000
+ include Google::Apis::Core::JsonObjectSupport
4001
+ end
4002
+
3973
4003
  class GoogleCloudAiplatformV1beta1UpdateSpecialistPoolOperationMetadata
3974
4004
  class Representation < Google::Apis::Core::JsonRepresentation; end
3975
4005
 
@@ -5761,6 +5791,30 @@ module Google
5761
5791
  end
5762
5792
  end
5763
5793
 
5794
+ class GoogleCloudAiplatformV1beta1ExportEndpointOperationMetadata
5795
+ # @private
5796
+ class Representation < Google::Apis::Core::JsonRepresentation
5797
+ property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
5798
+
5799
+ end
5800
+ end
5801
+
5802
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponse
5803
+ # @private
5804
+ class Representation < Google::Apis::Core::JsonRepresentation
5805
+ property :output_info, as: 'outputInfo', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo::Representation
5806
+
5807
+ end
5808
+ end
5809
+
5810
+ class GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo
5811
+ # @private
5812
+ class Representation < Google::Apis::Core::JsonRepresentation
5813
+ property :big_query_destination, as: 'bigQueryDestination', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1BigQueryDestination::Representation
5814
+
5815
+ end
5816
+ end
5817
+
5764
5818
  class GoogleCloudAiplatformV1beta1ExportFeatureValuesOperationMetadata
5765
5819
  # @private
5766
5820
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6316,6 +6370,8 @@ module Google
6316
6370
 
6317
6371
  property :description, as: 'description'
6318
6372
  property :display_name, as: 'displayName'
6373
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec::Representation
6374
+
6319
6375
  property :etag, as: 'etag'
6320
6376
  property :index_stats, as: 'indexStats', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexStats, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexStats::Representation
6321
6377
 
@@ -6365,6 +6421,8 @@ module Google
6365
6421
  property :description, as: 'description'
6366
6422
  property :display_name, as: 'displayName'
6367
6423
  property :enable_private_service_connect, as: 'enablePrivateServiceConnect'
6424
+ property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EncryptionSpec::Representation
6425
+
6368
6426
  property :etag, as: 'etag'
6369
6427
  hash :labels, as: 'labels'
6370
6428
  property :name, as: 'name'
@@ -7666,6 +7724,7 @@ module Google
7666
7724
  property :runtime_user, as: 'runtimeUser'
7667
7725
  property :service_account, as: 'serviceAccount'
7668
7726
  property :update_time, as: 'updateTime'
7727
+ property :version, as: 'version'
7669
7728
  end
7670
7729
  end
7671
7730
 
@@ -8178,9 +8237,9 @@ module Google
8178
8237
  class GoogleCloudAiplatformV1beta1RaySpec
8179
8238
  # @private
8180
8239
  class Representation < Google::Apis::Core::JsonRepresentation
8181
- property :head_machine_spec, as: 'headMachineSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec::Representation
8182
-
8240
+ property :head_node_resource_pool_id, as: 'headNodeResourcePoolId'
8183
8241
  property :image_uri, as: 'imageUri'
8242
+ hash :resource_pool_images, as: 'resourcePoolImages'
8184
8243
  end
8185
8244
  end
8186
8245
 
@@ -8370,6 +8429,7 @@ module Google
8370
8429
  # @private
8371
8430
  class Representation < Google::Apis::Core::JsonRepresentation
8372
8431
  hash :access_uris, as: 'accessUris'
8432
+ property :notebook_runtime_template, as: 'notebookRuntimeTemplate'
8373
8433
  end
8374
8434
  end
8375
8435
 
@@ -10431,6 +10491,8 @@ module Google
10431
10491
  # @private
10432
10492
  class Representation < Google::Apis::Core::JsonRepresentation
10433
10493
  property :client_id, as: 'clientId'
10494
+ collection :contexts, as: 'contexts', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialContext, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialContext::Representation
10495
+
10434
10496
  property :suggestion_count, as: 'suggestionCount'
10435
10497
  end
10436
10498
  end
@@ -10667,6 +10729,15 @@ module Google
10667
10729
  end
10668
10730
  end
10669
10731
 
10732
+ class GoogleCloudAiplatformV1beta1TrialContext
10733
+ # @private
10734
+ class Representation < Google::Apis::Core::JsonRepresentation
10735
+ property :description, as: 'description'
10736
+ collection :parameters, as: 'parameters', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialParameter, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TrialParameter::Representation
10737
+
10738
+ end
10739
+ end
10740
+
10670
10741
  class GoogleCloudAiplatformV1beta1TrialParameter
10671
10742
  # @private
10672
10743
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10793,6 +10864,14 @@ module Google
10793
10864
  end
10794
10865
  end
10795
10866
 
10867
+ class GoogleCloudAiplatformV1beta1UpdatePersistentResourceOperationMetadata
10868
+ # @private
10869
+ class Representation < Google::Apis::Core::JsonRepresentation
10870
+ property :generic_metadata, as: 'genericMetadata', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenericOperationMetadata::Representation
10871
+
10872
+ end
10873
+ end
10874
+
10796
10875
  class GoogleCloudAiplatformV1beta1UpdateSpecialistPoolOperationMetadata
10797
10876
  # @private
10798
10877
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6052,16 +6052,15 @@ module Google
6052
6052
 
6053
6053
  # Creates a new Feature in a given EntityType.
6054
6054
  # @param [String] parent
6055
- # Required. The resource name of the EntityType or FeatureGroup to create a
6056
- # Feature. Format: `projects/`project`/locations/`location`/featurestores/`
6057
- # featurestore`/entityTypes/`entity_type`` `projects/`project`/locations/`
6058
- # location`/featureGroups/`feature_group``
6055
+ # Required. The resource name of the EntityType to create a Feature. Format: `
6056
+ # projects/`project`/locations/`location`/featurestores/`featurestore`/
6057
+ # entityTypes/`entity_type``
6059
6058
  # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Feature] google_cloud_aiplatform_v1beta1_feature_object
6060
6059
  # @param [String] feature_id
6061
6060
  # Required. The ID to use for the Feature, which will become the final component
6062
6061
  # of the Feature's resource name. This value may be up to 128 characters, and
6063
6062
  # valid characters are `[a-z0-9_]`. The first character cannot be a number. The
6064
- # value must be unique within an EntityType/FeatureGroup.
6063
+ # value must be unique within an EntityType .
6065
6064
  # @param [String] fields
6066
6065
  # Selector specifying which fields to include in a partial response.
6067
6066
  # @param [String] quota_user
@@ -6096,8 +6095,7 @@ module Google
6096
6095
  # @param [String] name
6097
6096
  # Required. The name of the Features to be deleted. Format: `projects/`project`/
6098
6097
  # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type`/
6099
- # features/`feature`` `projects/`project`/locations/`location`/featureGroups/`
6100
- # feature_group`/features/`feature``
6098
+ # features/`feature``
6101
6099
  # @param [String] fields
6102
6100
  # Selector specifying which fields to include in a partial response.
6103
6101
  # @param [String] quota_user
@@ -6128,8 +6126,7 @@ module Google
6128
6126
  # Gets details of a single Feature.
6129
6127
  # @param [String] name
6130
6128
  # Required. The name of the Feature resource. Format: `projects/`project`/
6131
- # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type`` `
6132
- # projects/`project`/locations/`location`/featureGroups/`feature_group``
6129
+ # locations/`location`/featurestores/`featurestore`/entityTypes/`entity_type``
6133
6130
  # @param [String] fields
6134
6131
  # Selector specifying which fields to include in a partial response.
6135
6132
  # @param [String] quota_user
@@ -6161,8 +6158,7 @@ module Google
6161
6158
  # @param [String] parent
6162
6159
  # Required. The resource name of the Location to list Features. Format: `
6163
6160
  # projects/`project`/locations/`location`/featurestores/`featurestore`/
6164
- # entityTypes/`entity_type`` `projects/`project`/locations/`location`/
6165
- # featureGroups/`feature_group``
6161
+ # entityTypes/`entity_type``
6166
6162
  # @param [String] filter
6167
6163
  # Lists the Features that match the filter expression. The following filters are
6168
6164
  # supported: * `value_type`: Supports = and != comparisons. * `create_time`:
@@ -6182,7 +6178,8 @@ module Google
6182
6178
  # @param [String] order_by
6183
6179
  # A comma-separated list of fields to order by, sorted in ascending order. Use "
6184
6180
  # desc" after a field name for descending. Supported fields: * `feature_id` * `
6185
- # value_type` * `create_time` * `update_time`
6181
+ # value_type` (Not supported for FeatureRegistry Feature) * `create_time` * `
6182
+ # update_time`
6186
6183
  # @param [Fixnum] page_size
6187
6184
  # The maximum number of Features to return. The service may return fewer than
6188
6185
  # this value. If unspecified, at most 1000 Features will be returned. The
@@ -11809,6 +11806,76 @@ module Google
11809
11806
  execute_or_queue_command(command, &block)
11810
11807
  end
11811
11808
 
11809
+ # Internal only: Called from Compute Engine instance to obtain EUC for owner
11810
+ # Anonymous access: authenticates caller using VM identity JWT. Design doc: go/
11811
+ # colab-on-vertex-euc-dd
11812
+ # @param [String] name
11813
+ # Required. The name of the NotebookRuntime resource. Format: `projects/`project`
11814
+ # /locations/`location`/notebookRuntimes/`notebook_runtime``
11815
+ # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest] google_cloud_aiplatform_v1beta1_generate_access_token_request_object
11816
+ # @param [String] fields
11817
+ # Selector specifying which fields to include in a partial response.
11818
+ # @param [String] quota_user
11819
+ # Available to use for quota purposes for server-side applications. Can be any
11820
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
11821
+ # @param [Google::Apis::RequestOptions] options
11822
+ # Request-specific options
11823
+ #
11824
+ # @yield [result, err] Result & error if block supplied
11825
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse] parsed result object
11826
+ # @yieldparam err [StandardError] error object if request failed
11827
+ #
11828
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse]
11829
+ #
11830
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11831
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11832
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
11833
+ def generate_project_location_notebook_execution_job_access_token(name, google_cloud_aiplatform_v1beta1_generate_access_token_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
11834
+ command = make_simple_command(:post, 'v1beta1/{+name}:generateAccessToken', options)
11835
+ command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest::Representation
11836
+ command.request_object = google_cloud_aiplatform_v1beta1_generate_access_token_request_object
11837
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse::Representation
11838
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse
11839
+ command.params['name'] = name unless name.nil?
11840
+ command.query['fields'] = fields unless fields.nil?
11841
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
11842
+ execute_or_queue_command(command, &block)
11843
+ end
11844
+
11845
+ #
11846
+ # @param [String] name
11847
+ # Required. The name of the NotebookRuntime resource. Format: `projects/`project`
11848
+ # /locations/`location`/notebookRuntimes/`notebook_runtime``
11849
+ # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest] google_cloud_aiplatform_v1beta1_report_runtime_event_request_object
11850
+ # @param [String] fields
11851
+ # Selector specifying which fields to include in a partial response.
11852
+ # @param [String] quota_user
11853
+ # Available to use for quota purposes for server-side applications. Can be any
11854
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
11855
+ # @param [Google::Apis::RequestOptions] options
11856
+ # Request-specific options
11857
+ #
11858
+ # @yield [result, err] Result & error if block supplied
11859
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse] parsed result object
11860
+ # @yieldparam err [StandardError] error object if request failed
11861
+ #
11862
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse]
11863
+ #
11864
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
11865
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
11866
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
11867
+ def report_project_location_notebook_execution_job_event(name, google_cloud_aiplatform_v1beta1_report_runtime_event_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
11868
+ command = make_simple_command(:post, 'v1beta1/{+name}:reportEvent', options)
11869
+ command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest::Representation
11870
+ command.request_object = google_cloud_aiplatform_v1beta1_report_runtime_event_request_object
11871
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse::Representation
11872
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse
11873
+ command.params['name'] = name unless name.nil?
11874
+ command.query['fields'] = fields unless fields.nil?
11875
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
11876
+ execute_or_queue_command(command, &block)
11877
+ end
11878
+
11812
11879
  # Creates a NotebookRuntimeTemplate.
11813
11880
  # @param [String] parent
11814
11881
  # Required. The resource name of the Location to create the
@@ -12692,6 +12759,43 @@ module Google
12692
12759
  execute_or_queue_command(command, &block)
12693
12760
  end
12694
12761
 
12762
+ # Updates a PersistentResource.
12763
+ # @param [String] name
12764
+ # Immutable. Resource name of a PersistentResource.
12765
+ # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PersistentResource] google_cloud_aiplatform_v1beta1_persistent_resource_object
12766
+ # @param [String] update_mask
12767
+ # Required. Specify the fields to be overwritten in the PersistentResource by
12768
+ # the update method.
12769
+ # @param [String] fields
12770
+ # Selector specifying which fields to include in a partial response.
12771
+ # @param [String] quota_user
12772
+ # Available to use for quota purposes for server-side applications. Can be any
12773
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
12774
+ # @param [Google::Apis::RequestOptions] options
12775
+ # Request-specific options
12776
+ #
12777
+ # @yield [result, err] Result & error if block supplied
12778
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
12779
+ # @yieldparam err [StandardError] error object if request failed
12780
+ #
12781
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
12782
+ #
12783
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
12784
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
12785
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
12786
+ def patch_project_location_persistent_resource(name, google_cloud_aiplatform_v1beta1_persistent_resource_object = nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
12787
+ command = make_simple_command(:patch, 'v1beta1/{+name}', options)
12788
+ command.request_representation = Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PersistentResource::Representation
12789
+ command.request_object = google_cloud_aiplatform_v1beta1_persistent_resource_object
12790
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
12791
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
12792
+ command.params['name'] = name unless name.nil?
12793
+ command.query['updateMask'] = update_mask unless update_mask.nil?
12794
+ command.query['fields'] = fields unless fields.nil?
12795
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
12796
+ execute_or_queue_command(command, &block)
12797
+ end
12798
+
12695
12799
  # Starts asynchronous cancellation on a long-running operation. The server makes
12696
12800
  # a best effort to cancel the operation, but success is not guaranteed. If the
12697
12801
  # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-aiplatform_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.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: 2023-08-27 00:00:00.000000000 Z
11
+ date: 2023-09-17 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.3.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-aiplatform_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []