google-apis-aiplatform_v1beta1 0.25.0 → 0.26.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: f2cae486b3fec0381c70ce33f170dd779aee31945f8e92065b2532ebfbbe05c1
4
- data.tar.gz: 1e1f8b9c5fd77dbe89e5c8525d3ef90e12fa74b9883094b1ee762bb556d2cdbd
3
+ metadata.gz: 80596cee221ec51818a572f7fb41a2fecd5e6137f280df3b502008f146a42a9b
4
+ data.tar.gz: 3a6ec3bc39d9a8ed2332b0c4de5a6125de20023e70e1761bc357c9f8436cf416
5
5
  SHA512:
6
- metadata.gz: 0dd0beb01038310db6af6355632dc2a2222b218e6bd565f3dde9911751bab4fe72688f317060bf437d31394fe1727b9c80a02d008b4c81a01f117419bb32461e
7
- data.tar.gz: bf337df878a70bb310005be8422dda43bd3a720c14637cdc3f36f55fb3e8dd74a0531c935af6492f4e873c64ac5216892494c723226c898557b2125ec1a646fd
6
+ metadata.gz: 7562664a1c62ac8393667ebd87a17028d6b7409b9688b145b16906298f62e3c2b41afab71e58b4acbce1b42f3ef0ab6d4888f132dda40bd3be0cb4cbdca83add
7
+ data.tar.gz: c1e79d38180c975c322f3d777f7e910507b6059801e4f1b1a56535c81dba522139cf3fbb8481733de41178bd5d5a59f7a62391cf5d93a2ab5bb30951d2541178
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-aiplatform_v1beta1
2
2
 
3
+ ### v0.26.0 (2024-05-05)
4
+
5
+ * Regenerated from discovery document revision 20240429
6
+
3
7
  ### v0.25.0 (2024-04-28)
4
8
 
5
9
  * Regenerated from discovery document revision 20240417
@@ -11055,7 +11055,7 @@ module Google
11055
11055
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1IndexDatapoint]
11056
11056
  attr_accessor :datapoint
11057
11057
 
11058
- # The distance between the neighbor and the query vector.
11058
+ # The distance between the neighbor and the dense embedding query.
11059
11059
  # Corresponds to the JSON property `distance`
11060
11060
  # @return [Float]
11061
11061
  attr_accessor :distance
@@ -11921,6 +11921,11 @@ module Google
11921
11921
  # @return [Array<String>]
11922
11922
  attr_accessor :retrieval_queries
11923
11923
 
11924
+ # Google search entry point.
11925
+ # Corresponds to the JSON property `searchEntryPoint`
11926
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchEntryPoint]
11927
+ attr_accessor :search_entry_point
11928
+
11924
11929
  # Optional. Web search queries for the following-up web search.
11925
11930
  # Corresponds to the JSON property `webSearchQueries`
11926
11931
  # @return [Array<String>]
@@ -11933,6 +11938,7 @@ module Google
11933
11938
  # Update properties of this object
11934
11939
  def update!(**args)
11935
11940
  @retrieval_queries = args[:retrieval_queries] if args.key?(:retrieval_queries)
11941
+ @search_entry_point = args[:search_entry_point] if args.key?(:search_entry_point)
11936
11942
  @web_search_queries = args[:web_search_queries] if args.key?(:web_search_queries)
11937
11943
  end
11938
11944
  end
@@ -12573,8 +12579,8 @@ module Google
12573
12579
  # @return [String]
12574
12580
  attr_accessor :datapoint_id
12575
12581
 
12576
- # Required. Feature embedding vector. An array of numbers with the length of [
12577
- # NearestNeighborSearchConfig.dimensions].
12582
+ # Required. Feature embedding vector for dense index. An array of numbers with
12583
+ # the length of [NearestNeighborSearchConfig.dimensions].
12578
12584
  # Corresponds to the JSON property `featureVector`
12579
12585
  # @return [Array<Float>]
12580
12586
  attr_accessor :feature_vector
@@ -12874,7 +12880,7 @@ module Google
12874
12880
  # @return [Fixnum]
12875
12881
  attr_accessor :shards_count
12876
12882
 
12877
- # Output only. The number of vectors in the Index.
12883
+ # Output only. The number of dense vectors in the Index.
12878
12884
  # Corresponds to the JSON property `vectorsCount`
12879
12885
  # @return [Fixnum]
12880
12886
  attr_accessor :vectors_count
@@ -17737,13 +17743,6 @@ module Google
17737
17743
  # @return [Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema>]
17738
17744
  attr_accessor :ground_truth_fields
17739
17745
 
17740
- # The prediction instance type that the Model accepts when serving. Supported
17741
- # values are: * `object`: Each input is a JSON object format. * `array`: Each
17742
- # input is a JSON array format.
17743
- # Corresponds to the JSON property `instanceType`
17744
- # @return [String]
17745
- attr_accessor :instance_type
17746
-
17747
17746
  # Prediction output names of the model. The requirements are the same as the
17748
17747
  # feature_fields. For AutoML Tables, the prediction output name presented in
17749
17748
  # schema will be: `predicted_`target_column``, the `target_column` is the one
@@ -17762,7 +17761,6 @@ module Google
17762
17761
  def update!(**args)
17763
17762
  @feature_fields = args[:feature_fields] if args.key?(:feature_fields)
17764
17763
  @ground_truth_fields = args[:ground_truth_fields] if args.key?(:ground_truth_fields)
17765
- @instance_type = args[:instance_type] if args.key?(:instance_type)
17766
17764
  @prediction_fields = args[:prediction_fields] if args.key?(:prediction_fields)
17767
17765
  end
17768
17766
  end
@@ -19082,11 +19080,21 @@ module Google
19082
19080
  # @return [String]
19083
19081
  attr_accessor :create_time
19084
19082
 
19083
+ # Compute configuration to use for an execution job.
19084
+ # Corresponds to the JSON property `customEnvironmentSpec`
19085
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec]
19086
+ attr_accessor :custom_environment_spec
19087
+
19085
19088
  # The Dataform Repository containing the input notebook.
19086
19089
  # Corresponds to the JSON property `dataformRepositorySource`
19087
19090
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource]
19088
19091
  attr_accessor :dataform_repository_source
19089
19092
 
19093
+ # The content of the input notebook in ipynb format.
19094
+ # Corresponds to the JSON property `directNotebookSource`
19095
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource]
19096
+ attr_accessor :direct_notebook_source
19097
+
19090
19098
  # The display name of the NotebookExecutionJob. The name can be up to 128
19091
19099
  # characters long and can consist of any UTF-8 characters.
19092
19100
  # Corresponds to the JSON property `displayName`
@@ -19163,7 +19171,9 @@ module Google
19163
19171
  # Update properties of this object
19164
19172
  def update!(**args)
19165
19173
  @create_time = args[:create_time] if args.key?(:create_time)
19174
+ @custom_environment_spec = args[:custom_environment_spec] if args.key?(:custom_environment_spec)
19166
19175
  @dataform_repository_source = args[:dataform_repository_source] if args.key?(:dataform_repository_source)
19176
+ @direct_notebook_source = args[:direct_notebook_source] if args.key?(:direct_notebook_source)
19167
19177
  @display_name = args[:display_name] if args.key?(:display_name)
19168
19178
  @execution_timeout = args[:execution_timeout] if args.key?(:execution_timeout)
19169
19179
  @execution_user = args[:execution_user] if args.key?(:execution_user)
@@ -19179,6 +19189,37 @@ module Google
19179
19189
  end
19180
19190
  end
19181
19191
 
19192
+ # Compute configuration to use for an execution job.
19193
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec
19194
+ include Google::Apis::Core::Hashable
19195
+
19196
+ # Specification of a single machine.
19197
+ # Corresponds to the JSON property `machineSpec`
19198
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec]
19199
+ attr_accessor :machine_spec
19200
+
19201
+ # Network spec.
19202
+ # Corresponds to the JSON property `networkSpec`
19203
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NetworkSpec]
19204
+ attr_accessor :network_spec
19205
+
19206
+ # Represents the spec of persistent disk options.
19207
+ # Corresponds to the JSON property `persistentDiskSpec`
19208
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PersistentDiskSpec]
19209
+ attr_accessor :persistent_disk_spec
19210
+
19211
+ def initialize(**args)
19212
+ update!(**args)
19213
+ end
19214
+
19215
+ # Update properties of this object
19216
+ def update!(**args)
19217
+ @machine_spec = args[:machine_spec] if args.key?(:machine_spec)
19218
+ @network_spec = args[:network_spec] if args.key?(:network_spec)
19219
+ @persistent_disk_spec = args[:persistent_disk_spec] if args.key?(:persistent_disk_spec)
19220
+ end
19221
+ end
19222
+
19182
19223
  # The Dataform Repository containing the input notebook.
19183
19224
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource
19184
19225
  include Google::Apis::Core::Hashable
@@ -19206,6 +19247,26 @@ module Google
19206
19247
  end
19207
19248
  end
19208
19249
 
19250
+ # The content of the input notebook in ipynb format.
19251
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource
19252
+ include Google::Apis::Core::Hashable
19253
+
19254
+ # The base64-encoded contents of the input notebook file.
19255
+ # Corresponds to the JSON property `content`
19256
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
19257
+ # @return [String]
19258
+ attr_accessor :content
19259
+
19260
+ def initialize(**args)
19261
+ update!(**args)
19262
+ end
19263
+
19264
+ # Update properties of this object
19265
+ def update!(**args)
19266
+ @content = args[:content] if args.key?(:content)
19267
+ end
19268
+ end
19269
+
19209
19270
  # The Cloud Storage uri for the input notebook.
19210
19271
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobGcsNotebookSource
19211
19272
  include Google::Apis::Core::Hashable
@@ -21150,6 +21211,12 @@ module Google
21150
21211
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployGke]
21151
21212
  attr_accessor :deploy_gke
21152
21213
 
21214
+ # The regional resource name or the URI. Key is region, e.g., us-central1,
21215
+ # europe-west2, global, etc..
21216
+ # Corresponds to the JSON property `fineTune`
21217
+ # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences]
21218
+ attr_accessor :fine_tune
21219
+
21153
21220
  # The regional resource name or the URI. Key is region, e.g., us-central1,
21154
21221
  # europe-west2, global, etc..
21155
21222
  # Corresponds to the JSON property `openEvaluationPipeline`
@@ -21216,6 +21283,7 @@ module Google
21216
21283
  @create_application = args[:create_application] if args.key?(:create_application)
21217
21284
  @deploy = args[:deploy] if args.key?(:deploy)
21218
21285
  @deploy_gke = args[:deploy_gke] if args.key?(:deploy_gke)
21286
+ @fine_tune = args[:fine_tune] if args.key?(:fine_tune)
21219
21287
  @open_evaluation_pipeline = args[:open_evaluation_pipeline] if args.key?(:open_evaluation_pipeline)
21220
21288
  @open_fine_tuning_pipeline = args[:open_fine_tuning_pipeline] if args.key?(:open_fine_tuning_pipeline)
21221
21289
  @open_fine_tuning_pipelines = args[:open_fine_tuning_pipelines] if args.key?(:open_fine_tuning_pipelines)
@@ -21261,6 +21329,11 @@ module Google
21261
21329
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources]
21262
21330
  attr_accessor :dedicated_resources
21263
21331
 
21332
+ # Optional. The name of the deploy task (e.g., "text to image generation").
21333
+ # Corresponds to the JSON property `deployTaskName`
21334
+ # @return [String]
21335
+ attr_accessor :deploy_task_name
21336
+
21264
21337
  # Contains information about the Large Model.
21265
21338
  # Corresponds to the JSON property `largeModelReference`
21266
21339
  # @return [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LargeModelReference]
@@ -21298,6 +21371,7 @@ module Google
21298
21371
  @automatic_resources = args[:automatic_resources] if args.key?(:automatic_resources)
21299
21372
  @container_spec = args[:container_spec] if args.key?(:container_spec)
21300
21373
  @dedicated_resources = args[:dedicated_resources] if args.key?(:dedicated_resources)
21374
+ @deploy_task_name = args[:deploy_task_name] if args.key?(:deploy_task_name)
21301
21375
  @large_model_reference = args[:large_model_reference] if args.key?(:large_model_reference)
21302
21376
  @model_display_name = args[:model_display_name] if args.key?(:model_display_name)
21303
21377
  @public_artifact_uri = args[:public_artifact_uri] if args.key?(:public_artifact_uri)
@@ -30362,6 +30436,33 @@ module Google
30362
30436
  end
30363
30437
  end
30364
30438
 
30439
+ # Google search entry point.
30440
+ class GoogleCloudAiplatformV1beta1SearchEntryPoint
30441
+ include Google::Apis::Core::Hashable
30442
+
30443
+ # Optional. Web content snippet that can be embedded in a web page or an app
30444
+ # webview.
30445
+ # Corresponds to the JSON property `renderedContent`
30446
+ # @return [String]
30447
+ attr_accessor :rendered_content
30448
+
30449
+ # Optional. Base64 encoded JSON representing array of tuple.
30450
+ # Corresponds to the JSON property `sdkBlob`
30451
+ # NOTE: Values are automatically base64 encoded/decoded in the client library.
30452
+ # @return [String]
30453
+ attr_accessor :sdk_blob
30454
+
30455
+ def initialize(**args)
30456
+ update!(**args)
30457
+ end
30458
+
30459
+ # Update properties of this object
30460
+ def update!(**args)
30461
+ @rendered_content = args[:rendered_content] if args.key?(:rendered_content)
30462
+ @sdk_blob = args[:sdk_blob] if args.key?(:sdk_blob)
30463
+ end
30464
+ end
30465
+
30365
30466
  # Response message for FeaturestoreService.SearchFeatures.
30366
30467
  class GoogleCloudAiplatformV1beta1SearchFeaturesResponse
30367
30468
  include Google::Apis::Core::Hashable
@@ -36339,7 +36440,8 @@ module Google
36339
36440
  class LanguageLabsAidaTrustRecitationProtoSegmentResult
36340
36441
  include Google::Apis::Core::Hashable
36341
36442
 
36342
- # The dataset the segment came from.
36443
+ # The dataset the segment came from. Datasets change often as model evolves.
36444
+ # Treat this field as informational only and avoid depending on it directly.
36343
36445
  # Corresponds to the JSON property `attributionDataset`
36344
36446
  # @return [String]
36345
36447
  attr_accessor :attribution_dataset
@@ -36381,6 +36483,12 @@ module Google
36381
36483
  # @return [String]
36382
36484
  attr_accessor :segment_recitation_action
36383
36485
 
36486
+ # The category of the source dataset where the segment came from. This is more
36487
+ # stable than Dataset.
36488
+ # Corresponds to the JSON property `sourceCategory`
36489
+ # @return [String]
36490
+ attr_accessor :source_category
36491
+
36384
36492
  # The segment boundary start (inclusive) and end index (exclusive) in the given
36385
36493
  # text. In the streaming RPC, the indexes always start from the beginning of the
36386
36494
  # first text in the entire stream. The indexes are measured in UTF-16 code units.
@@ -36401,6 +36509,7 @@ module Google
36401
36509
  @end_index = args[:end_index] if args.key?(:end_index)
36402
36510
  @raw_text = args[:raw_text] if args.key?(:raw_text)
36403
36511
  @segment_recitation_action = args[:segment_recitation_action] if args.key?(:segment_recitation_action)
36512
+ @source_category = args[:source_category] if args.key?(:source_category)
36404
36513
  @start_index = args[:start_index] if args.key?(:start_index)
36405
36514
  end
36406
36515
  end
@@ -36694,7 +36803,8 @@ module Google
36694
36803
  class LearningGenaiRecitationSegmentResult
36695
36804
  include Google::Apis::Core::Hashable
36696
36805
 
36697
- # The dataset the segment came from.
36806
+ # The dataset the segment came from. Datasets change often as model evolves.
36807
+ # Treat this field as informational only and avoid depending on it directly.
36698
36808
  # Corresponds to the JSON property `attributionDataset`
36699
36809
  # @return [String]
36700
36810
  attr_accessor :attribution_dataset
@@ -36736,6 +36846,12 @@ module Google
36736
36846
  # @return [String]
36737
36847
  attr_accessor :segment_recitation_action
36738
36848
 
36849
+ # The category of the source dataset where the segment came from. This is more
36850
+ # stable than Dataset.
36851
+ # Corresponds to the JSON property `sourceCategory`
36852
+ # @return [String]
36853
+ attr_accessor :source_category
36854
+
36739
36855
  # The segment boundary start (inclusive) and end index (exclusive) in the given
36740
36856
  # text. In the streaming RPC, the indexes always start from the beginning of the
36741
36857
  # first text in the entire stream. The indexes are measured in UTF-16 code units.
@@ -36756,6 +36872,7 @@ module Google
36756
36872
  @end_index = args[:end_index] if args.key?(:end_index)
36757
36873
  @raw_text = args[:raw_text] if args.key?(:raw_text)
36758
36874
  @segment_recitation_action = args[:segment_recitation_action] if args.key?(:segment_recitation_action)
36875
+ @source_category = args[:source_category] if args.key?(:source_category)
36759
36876
  @start_index = args[:start_index] if args.key?(:start_index)
36760
36877
  end
36761
36878
  end
@@ -38554,8 +38671,9 @@ module Google
38554
38671
  attr_accessor :stream_terminated
38555
38672
  alias_method :stream_terminated?, :stream_terminated
38556
38673
 
38557
- # NOT YET IMPLEMENTED. Aggregated number of total tokens decoded so far. For
38558
- # streaming, this is sum of all the tokens decoded so far i.e. aggregated count.
38674
+ # Total tokens decoded so far per response_candidate. For streaming: Count of
38675
+ # all the tokens decoded so far (aggregated count). For unary: Count of all the
38676
+ # tokens decoded per response_candidate.
38559
38677
  # Corresponds to the JSON property `totalDecodedTokenCount`
38560
38678
  # @return [Fixnum]
38561
38679
  attr_accessor :total_decoded_token_count
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240417"
25
+ REVISION = "20240429"
26
26
  end
27
27
  end
28
28
  end
@@ -3232,12 +3232,24 @@ module Google
3232
3232
  include Google::Apis::Core::JsonObjectSupport
3233
3233
  end
3234
3234
 
3235
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec
3236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3237
+
3238
+ include Google::Apis::Core::JsonObjectSupport
3239
+ end
3240
+
3235
3241
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource
3236
3242
  class Representation < Google::Apis::Core::JsonRepresentation; end
3237
3243
 
3238
3244
  include Google::Apis::Core::JsonObjectSupport
3239
3245
  end
3240
3246
 
3247
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource
3248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
3249
+
3250
+ include Google::Apis::Core::JsonObjectSupport
3251
+ end
3252
+
3241
3253
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobGcsNotebookSource
3242
3254
  class Representation < Google::Apis::Core::JsonRepresentation; end
3243
3255
 
@@ -5086,6 +5098,12 @@ module Google
5086
5098
  include Google::Apis::Core::JsonObjectSupport
5087
5099
  end
5088
5100
 
5101
+ class GoogleCloudAiplatformV1beta1SearchEntryPoint
5102
+ class Representation < Google::Apis::Core::JsonRepresentation; end
5103
+
5104
+ include Google::Apis::Core::JsonObjectSupport
5105
+ end
5106
+
5089
5107
  class GoogleCloudAiplatformV1beta1SearchFeaturesResponse
5090
5108
  class Representation < Google::Apis::Core::JsonRepresentation; end
5091
5109
 
@@ -9962,6 +9980,8 @@ module Google
9962
9980
  # @private
9963
9981
  class Representation < Google::Apis::Core::JsonRepresentation
9964
9982
  collection :retrieval_queries, as: 'retrievalQueries'
9983
+ property :search_entry_point, as: 'searchEntryPoint', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchEntryPoint, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SearchEntryPoint::Representation
9984
+
9965
9985
  collection :web_search_queries, as: 'webSearchQueries'
9966
9986
  end
9967
9987
  end
@@ -11607,7 +11627,6 @@ module Google
11607
11627
 
11608
11628
  collection :ground_truth_fields, as: 'groundTruthFields', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema::Representation
11609
11629
 
11610
- property :instance_type, as: 'instanceType'
11611
11630
  collection :prediction_fields, as: 'predictionFields', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema::Representation
11612
11631
 
11613
11632
  end
@@ -12009,8 +12028,12 @@ module Google
12009
12028
  # @private
12010
12029
  class Representation < Google::Apis::Core::JsonRepresentation
12011
12030
  property :create_time, as: 'createTime'
12031
+ property :custom_environment_spec, as: 'customEnvironmentSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec::Representation
12032
+
12012
12033
  property :dataform_repository_source, as: 'dataformRepositorySource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource::Representation
12013
12034
 
12035
+ property :direct_notebook_source, as: 'directNotebookSource', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource::Representation
12036
+
12014
12037
  property :display_name, as: 'displayName'
12015
12038
  property :execution_timeout, as: 'executionTimeout'
12016
12039
  property :execution_user, as: 'executionUser'
@@ -12028,6 +12051,18 @@ module Google
12028
12051
  end
12029
12052
  end
12030
12053
 
12054
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec
12055
+ # @private
12056
+ class Representation < Google::Apis::Core::JsonRepresentation
12057
+ property :machine_spec, as: 'machineSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1MachineSpec::Representation
12058
+
12059
+ property :network_spec, as: 'networkSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NetworkSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NetworkSpec::Representation
12060
+
12061
+ property :persistent_disk_spec, as: 'persistentDiskSpec', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PersistentDiskSpec, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PersistentDiskSpec::Representation
12062
+
12063
+ end
12064
+ end
12065
+
12031
12066
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource
12032
12067
  # @private
12033
12068
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12036,6 +12071,13 @@ module Google
12036
12071
  end
12037
12072
  end
12038
12073
 
12074
+ class GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource
12075
+ # @private
12076
+ class Representation < Google::Apis::Core::JsonRepresentation
12077
+ property :content, :base64 => true, as: 'content'
12078
+ end
12079
+ end
12080
+
12039
12081
  class GoogleCloudAiplatformV1beta1NotebookExecutionJobGcsNotebookSource
12040
12082
  # @private
12041
12083
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -12537,6 +12579,8 @@ module Google
12537
12579
 
12538
12580
  property :deploy_gke, as: 'deployGke', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployGke, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployGke::Representation
12539
12581
 
12582
+ property :fine_tune, as: 'fineTune', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
12583
+
12540
12584
  property :open_evaluation_pipeline, as: 'openEvaluationPipeline', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
12541
12585
 
12542
12586
  property :open_fine_tuning_pipeline, as: 'openFineTuningPipeline', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences::Representation
@@ -12570,6 +12614,7 @@ module Google
12570
12614
 
12571
12615
  property :dedicated_resources, as: 'dedicatedResources', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1DedicatedResources::Representation
12572
12616
 
12617
+ property :deploy_task_name, as: 'deployTaskName'
12573
12618
  property :large_model_reference, as: 'largeModelReference', class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LargeModelReference, decorator: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LargeModelReference::Representation
12574
12619
 
12575
12620
  property :model_display_name, as: 'modelDisplayName'
@@ -15096,6 +15141,14 @@ module Google
15096
15141
  end
15097
15142
  end
15098
15143
 
15144
+ class GoogleCloudAiplatformV1beta1SearchEntryPoint
15145
+ # @private
15146
+ class Representation < Google::Apis::Core::JsonRepresentation
15147
+ property :rendered_content, as: 'renderedContent'
15148
+ property :sdk_blob, :base64 => true, as: 'sdkBlob'
15149
+ end
15150
+ end
15151
+
15099
15152
  class GoogleCloudAiplatformV1beta1SearchFeaturesResponse
15100
15153
  # @private
15101
15154
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -16776,6 +16829,7 @@ module Google
16776
16829
  property :end_index, as: 'endIndex'
16777
16830
  property :raw_text, as: 'rawText'
16778
16831
  property :segment_recitation_action, as: 'segmentRecitationAction'
16832
+ property :source_category, as: 'sourceCategory'
16779
16833
  property :start_index, as: 'startIndex'
16780
16834
  end
16781
16835
  end
@@ -16849,6 +16903,7 @@ module Google
16849
16903
  property :end_index, as: 'endIndex'
16850
16904
  property :raw_text, as: 'rawText'
16851
16905
  property :segment_recitation_action, as: 'segmentRecitationAction'
16906
+ property :source_category, as: 'sourceCategory'
16852
16907
  property :start_index, as: 'startIndex'
16853
16908
  end
16854
16909
  end
@@ -223,6 +223,372 @@ module Google
223
223
  execute_or_queue_command(command, &block)
224
224
  end
225
225
 
226
+ # Starts asynchronous cancellation on a long-running operation. The server makes
227
+ # a best effort to cancel the operation, but success is not guaranteed. If the
228
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
229
+ # Clients can use Operations.GetOperation or other methods to check whether the
230
+ # cancellation succeeded or whether the operation completed despite cancellation.
231
+ # On successful cancellation, the operation is not deleted; instead, it becomes
232
+ # an operation with an Operation.error value with a google.rpc.Status.code of 1,
233
+ # corresponding to `Code.CANCELLED`.
234
+ # @param [String] name
235
+ # The name of the operation resource to be cancelled.
236
+ # @param [String] fields
237
+ # Selector specifying which fields to include in a partial response.
238
+ # @param [String] quota_user
239
+ # Available to use for quota purposes for server-side applications. Can be any
240
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
241
+ # @param [Google::Apis::RequestOptions] options
242
+ # Request-specific options
243
+ #
244
+ # @yield [result, err] Result & error if block supplied
245
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
246
+ # @yieldparam err [StandardError] error object if request failed
247
+ #
248
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
249
+ #
250
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
251
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
252
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
253
+ def cancel_project_location_agent_operation(name, fields: nil, quota_user: nil, options: nil, &block)
254
+ command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
255
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
256
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
257
+ command.params['name'] = name unless name.nil?
258
+ command.query['fields'] = fields unless fields.nil?
259
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
260
+ execute_or_queue_command(command, &block)
261
+ end
262
+
263
+ # Deletes a long-running operation. This method indicates that the client is no
264
+ # longer interested in the operation result. It does not cancel the operation.
265
+ # If the server doesn't support this method, it returns `google.rpc.Code.
266
+ # UNIMPLEMENTED`.
267
+ # @param [String] name
268
+ # The name of the operation resource to be deleted.
269
+ # @param [String] fields
270
+ # Selector specifying which fields to include in a partial response.
271
+ # @param [String] quota_user
272
+ # Available to use for quota purposes for server-side applications. Can be any
273
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
274
+ # @param [Google::Apis::RequestOptions] options
275
+ # Request-specific options
276
+ #
277
+ # @yield [result, err] Result & error if block supplied
278
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
279
+ # @yieldparam err [StandardError] error object if request failed
280
+ #
281
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
282
+ #
283
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
284
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
285
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
286
+ def delete_project_location_agent_operation(name, fields: nil, quota_user: nil, options: nil, &block)
287
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
288
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
289
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
290
+ command.params['name'] = name unless name.nil?
291
+ command.query['fields'] = fields unless fields.nil?
292
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
293
+ execute_or_queue_command(command, &block)
294
+ end
295
+
296
+ # Gets the latest state of a long-running operation. Clients can use this method
297
+ # to poll the operation result at intervals as recommended by the API service.
298
+ # @param [String] name
299
+ # The name of the operation resource.
300
+ # @param [String] fields
301
+ # Selector specifying which fields to include in a partial response.
302
+ # @param [String] quota_user
303
+ # Available to use for quota purposes for server-side applications. Can be any
304
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
305
+ # @param [Google::Apis::RequestOptions] options
306
+ # Request-specific options
307
+ #
308
+ # @yield [result, err] Result & error if block supplied
309
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
310
+ # @yieldparam err [StandardError] error object if request failed
311
+ #
312
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
313
+ #
314
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
315
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
316
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
317
+ def get_project_location_agent_operation(name, fields: nil, quota_user: nil, options: nil, &block)
318
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
319
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
320
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
321
+ command.params['name'] = name unless name.nil?
322
+ command.query['fields'] = fields unless fields.nil?
323
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
324
+ execute_or_queue_command(command, &block)
325
+ end
326
+
327
+ # Lists operations that match the specified filter in the request. If the server
328
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
329
+ # @param [String] name
330
+ # The name of the operation's parent resource.
331
+ # @param [String] filter
332
+ # The standard list filter.
333
+ # @param [Fixnum] page_size
334
+ # The standard list page size.
335
+ # @param [String] page_token
336
+ # The standard list page token.
337
+ # @param [String] fields
338
+ # Selector specifying which fields to include in a partial response.
339
+ # @param [String] quota_user
340
+ # Available to use for quota purposes for server-side applications. Can be any
341
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
342
+ # @param [Google::Apis::RequestOptions] options
343
+ # Request-specific options
344
+ #
345
+ # @yield [result, err] Result & error if block supplied
346
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
347
+ # @yieldparam err [StandardError] error object if request failed
348
+ #
349
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
350
+ #
351
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
352
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
353
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
354
+ def list_project_location_agent_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
355
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
356
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
357
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
358
+ command.params['name'] = name unless name.nil?
359
+ command.query['filter'] = filter unless filter.nil?
360
+ command.query['pageSize'] = page_size unless page_size.nil?
361
+ command.query['pageToken'] = page_token unless page_token.nil?
362
+ command.query['fields'] = fields unless fields.nil?
363
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
364
+ execute_or_queue_command(command, &block)
365
+ end
366
+
367
+ # Waits until the specified long-running operation is done or reaches at most a
368
+ # specified timeout, returning the latest state. If the operation is already
369
+ # done, the latest state is immediately returned. If the timeout specified is
370
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
371
+ # the server does not support this method, it returns `google.rpc.Code.
372
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
373
+ # the latest state before the specified timeout (including immediately), meaning
374
+ # even an immediate response is no guarantee that the operation is done.
375
+ # @param [String] name
376
+ # The name of the operation resource to wait on.
377
+ # @param [String] timeout
378
+ # The maximum duration to wait before timing out. If left blank, the wait will
379
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
380
+ # context deadline is also specified, the shorter one will be used.
381
+ # @param [String] fields
382
+ # Selector specifying which fields to include in a partial response.
383
+ # @param [String] quota_user
384
+ # Available to use for quota purposes for server-side applications. Can be any
385
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
386
+ # @param [Google::Apis::RequestOptions] options
387
+ # Request-specific options
388
+ #
389
+ # @yield [result, err] Result & error if block supplied
390
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
391
+ # @yieldparam err [StandardError] error object if request failed
392
+ #
393
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
394
+ #
395
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
396
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
397
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
398
+ def wait_project_location_agent_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
399
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
400
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
401
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
402
+ command.params['name'] = name unless name.nil?
403
+ command.query['timeout'] = timeout unless timeout.nil?
404
+ command.query['fields'] = fields unless fields.nil?
405
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
406
+ execute_or_queue_command(command, &block)
407
+ end
408
+
409
+ # Starts asynchronous cancellation on a long-running operation. The server makes
410
+ # a best effort to cancel the operation, but success is not guaranteed. If the
411
+ # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
412
+ # Clients can use Operations.GetOperation or other methods to check whether the
413
+ # cancellation succeeded or whether the operation completed despite cancellation.
414
+ # On successful cancellation, the operation is not deleted; instead, it becomes
415
+ # an operation with an Operation.error value with a google.rpc.Status.code of 1,
416
+ # corresponding to `Code.CANCELLED`.
417
+ # @param [String] name
418
+ # The name of the operation resource to be cancelled.
419
+ # @param [String] fields
420
+ # Selector specifying which fields to include in a partial response.
421
+ # @param [String] quota_user
422
+ # Available to use for quota purposes for server-side applications. Can be any
423
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
424
+ # @param [Google::Apis::RequestOptions] options
425
+ # Request-specific options
426
+ #
427
+ # @yield [result, err] Result & error if block supplied
428
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
429
+ # @yieldparam err [StandardError] error object if request failed
430
+ #
431
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
432
+ #
433
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
434
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
435
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
436
+ def cancel_project_location_app_operation(name, fields: nil, quota_user: nil, options: nil, &block)
437
+ command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
438
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
439
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
440
+ command.params['name'] = name unless name.nil?
441
+ command.query['fields'] = fields unless fields.nil?
442
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
443
+ execute_or_queue_command(command, &block)
444
+ end
445
+
446
+ # Deletes a long-running operation. This method indicates that the client is no
447
+ # longer interested in the operation result. It does not cancel the operation.
448
+ # If the server doesn't support this method, it returns `google.rpc.Code.
449
+ # UNIMPLEMENTED`.
450
+ # @param [String] name
451
+ # The name of the operation resource to be deleted.
452
+ # @param [String] fields
453
+ # Selector specifying which fields to include in a partial response.
454
+ # @param [String] quota_user
455
+ # Available to use for quota purposes for server-side applications. Can be any
456
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
457
+ # @param [Google::Apis::RequestOptions] options
458
+ # Request-specific options
459
+ #
460
+ # @yield [result, err] Result & error if block supplied
461
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
462
+ # @yieldparam err [StandardError] error object if request failed
463
+ #
464
+ # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
465
+ #
466
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
467
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
468
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
469
+ def delete_project_location_app_operation(name, fields: nil, quota_user: nil, options: nil, &block)
470
+ command = make_simple_command(:delete, 'v1beta1/{+name}', options)
471
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
472
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
473
+ command.params['name'] = name unless name.nil?
474
+ command.query['fields'] = fields unless fields.nil?
475
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
476
+ execute_or_queue_command(command, &block)
477
+ end
478
+
479
+ # Gets the latest state of a long-running operation. Clients can use this method
480
+ # to poll the operation result at intervals as recommended by the API service.
481
+ # @param [String] name
482
+ # The name of the operation resource.
483
+ # @param [String] fields
484
+ # Selector specifying which fields to include in a partial response.
485
+ # @param [String] quota_user
486
+ # Available to use for quota purposes for server-side applications. Can be any
487
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
488
+ # @param [Google::Apis::RequestOptions] options
489
+ # Request-specific options
490
+ #
491
+ # @yield [result, err] Result & error if block supplied
492
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
493
+ # @yieldparam err [StandardError] error object if request failed
494
+ #
495
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
496
+ #
497
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
498
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
499
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
500
+ def get_project_location_app_operation(name, fields: nil, quota_user: nil, options: nil, &block)
501
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
502
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
503
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
504
+ command.params['name'] = name unless name.nil?
505
+ command.query['fields'] = fields unless fields.nil?
506
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
507
+ execute_or_queue_command(command, &block)
508
+ end
509
+
510
+ # Lists operations that match the specified filter in the request. If the server
511
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
512
+ # @param [String] name
513
+ # The name of the operation's parent resource.
514
+ # @param [String] filter
515
+ # The standard list filter.
516
+ # @param [Fixnum] page_size
517
+ # The standard list page size.
518
+ # @param [String] page_token
519
+ # The standard list page token.
520
+ # @param [String] fields
521
+ # Selector specifying which fields to include in a partial response.
522
+ # @param [String] quota_user
523
+ # Available to use for quota purposes for server-side applications. Can be any
524
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
525
+ # @param [Google::Apis::RequestOptions] options
526
+ # Request-specific options
527
+ #
528
+ # @yield [result, err] Result & error if block supplied
529
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
530
+ # @yieldparam err [StandardError] error object if request failed
531
+ #
532
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
533
+ #
534
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
535
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
536
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
537
+ def list_project_location_app_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
538
+ command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
539
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
540
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
541
+ command.params['name'] = name unless name.nil?
542
+ command.query['filter'] = filter unless filter.nil?
543
+ command.query['pageSize'] = page_size unless page_size.nil?
544
+ command.query['pageToken'] = page_token unless page_token.nil?
545
+ command.query['fields'] = fields unless fields.nil?
546
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
547
+ execute_or_queue_command(command, &block)
548
+ end
549
+
550
+ # Waits until the specified long-running operation is done or reaches at most a
551
+ # specified timeout, returning the latest state. If the operation is already
552
+ # done, the latest state is immediately returned. If the timeout specified is
553
+ # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
554
+ # the server does not support this method, it returns `google.rpc.Code.
555
+ # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
556
+ # the latest state before the specified timeout (including immediately), meaning
557
+ # even an immediate response is no guarantee that the operation is done.
558
+ # @param [String] name
559
+ # The name of the operation resource to wait on.
560
+ # @param [String] timeout
561
+ # The maximum duration to wait before timing out. If left blank, the wait will
562
+ # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
563
+ # context deadline is also specified, the shorter one will be used.
564
+ # @param [String] fields
565
+ # Selector specifying which fields to include in a partial response.
566
+ # @param [String] quota_user
567
+ # Available to use for quota purposes for server-side applications. Can be any
568
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
569
+ # @param [Google::Apis::RequestOptions] options
570
+ # Request-specific options
571
+ #
572
+ # @yield [result, err] Result & error if block supplied
573
+ # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
574
+ # @yieldparam err [StandardError] error object if request failed
575
+ #
576
+ # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
577
+ #
578
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
579
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
580
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
581
+ def wait_project_location_app_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
582
+ command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
583
+ command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
584
+ command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
585
+ command.params['name'] = name unless name.nil?
586
+ command.query['timeout'] = timeout unless timeout.nil?
587
+ command.query['fields'] = fields unless fields.nil?
588
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
589
+ execute_or_queue_command(command, &block)
590
+ end
591
+
226
592
  # Cancels a BatchPredictionJob. Starts asynchronous cancellation on the
227
593
  # BatchPredictionJob. The server makes the best effort to cancel the job, but
228
594
  # success is not guaranteed. Clients can use JobService.GetBatchPredictionJob or
@@ -5076,189 +5442,6 @@ module Google
5076
5442
  execute_or_queue_command(command, &block)
5077
5443
  end
5078
5444
 
5079
- # Starts asynchronous cancellation on a long-running operation. The server makes
5080
- # a best effort to cancel the operation, but success is not guaranteed. If the
5081
- # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
5082
- # Clients can use Operations.GetOperation or other methods to check whether the
5083
- # cancellation succeeded or whether the operation completed despite cancellation.
5084
- # On successful cancellation, the operation is not deleted; instead, it becomes
5085
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
5086
- # corresponding to `Code.CANCELLED`.
5087
- # @param [String] name
5088
- # The name of the operation resource to be cancelled.
5089
- # @param [String] fields
5090
- # Selector specifying which fields to include in a partial response.
5091
- # @param [String] quota_user
5092
- # Available to use for quota purposes for server-side applications. Can be any
5093
- # arbitrary string assigned to a user, but should not exceed 40 characters.
5094
- # @param [Google::Apis::RequestOptions] options
5095
- # Request-specific options
5096
- #
5097
- # @yield [result, err] Result & error if block supplied
5098
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
5099
- # @yieldparam err [StandardError] error object if request failed
5100
- #
5101
- # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
5102
- #
5103
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5104
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5105
- # @raise [Google::Apis::AuthorizationError] Authorization is required
5106
- def cancel_project_location_extension_deployment_operation(name, fields: nil, quota_user: nil, options: nil, &block)
5107
- command = make_simple_command(:post, 'v1beta1/{+name}:cancel', options)
5108
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
5109
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
5110
- command.params['name'] = name unless name.nil?
5111
- command.query['fields'] = fields unless fields.nil?
5112
- command.query['quotaUser'] = quota_user unless quota_user.nil?
5113
- execute_or_queue_command(command, &block)
5114
- end
5115
-
5116
- # Deletes a long-running operation. This method indicates that the client is no
5117
- # longer interested in the operation result. It does not cancel the operation.
5118
- # If the server doesn't support this method, it returns `google.rpc.Code.
5119
- # UNIMPLEMENTED`.
5120
- # @param [String] name
5121
- # The name of the operation resource to be deleted.
5122
- # @param [String] fields
5123
- # Selector specifying which fields to include in a partial response.
5124
- # @param [String] quota_user
5125
- # Available to use for quota purposes for server-side applications. Can be any
5126
- # arbitrary string assigned to a user, but should not exceed 40 characters.
5127
- # @param [Google::Apis::RequestOptions] options
5128
- # Request-specific options
5129
- #
5130
- # @yield [result, err] Result & error if block supplied
5131
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty] parsed result object
5132
- # @yieldparam err [StandardError] error object if request failed
5133
- #
5134
- # @return [Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty]
5135
- #
5136
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5137
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5138
- # @raise [Google::Apis::AuthorizationError] Authorization is required
5139
- def delete_project_location_extension_deployment_operation(name, fields: nil, quota_user: nil, options: nil, &block)
5140
- command = make_simple_command(:delete, 'v1beta1/{+name}', options)
5141
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty::Representation
5142
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleProtobufEmpty
5143
- command.params['name'] = name unless name.nil?
5144
- command.query['fields'] = fields unless fields.nil?
5145
- command.query['quotaUser'] = quota_user unless quota_user.nil?
5146
- execute_or_queue_command(command, &block)
5147
- end
5148
-
5149
- # Gets the latest state of a long-running operation. Clients can use this method
5150
- # to poll the operation result at intervals as recommended by the API service.
5151
- # @param [String] name
5152
- # The name of the operation resource.
5153
- # @param [String] fields
5154
- # Selector specifying which fields to include in a partial response.
5155
- # @param [String] quota_user
5156
- # Available to use for quota purposes for server-side applications. Can be any
5157
- # arbitrary string assigned to a user, but should not exceed 40 characters.
5158
- # @param [Google::Apis::RequestOptions] options
5159
- # Request-specific options
5160
- #
5161
- # @yield [result, err] Result & error if block supplied
5162
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
5163
- # @yieldparam err [StandardError] error object if request failed
5164
- #
5165
- # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
5166
- #
5167
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5168
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5169
- # @raise [Google::Apis::AuthorizationError] Authorization is required
5170
- def get_project_location_extension_deployment_operation(name, fields: nil, quota_user: nil, options: nil, &block)
5171
- command = make_simple_command(:get, 'v1beta1/{+name}', options)
5172
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
5173
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
5174
- command.params['name'] = name unless name.nil?
5175
- command.query['fields'] = fields unless fields.nil?
5176
- command.query['quotaUser'] = quota_user unless quota_user.nil?
5177
- execute_or_queue_command(command, &block)
5178
- end
5179
-
5180
- # Lists operations that match the specified filter in the request. If the server
5181
- # doesn't support this method, it returns `UNIMPLEMENTED`.
5182
- # @param [String] name
5183
- # The name of the operation's parent resource.
5184
- # @param [String] filter
5185
- # The standard list filter.
5186
- # @param [Fixnum] page_size
5187
- # The standard list page size.
5188
- # @param [String] page_token
5189
- # The standard list page token.
5190
- # @param [String] fields
5191
- # Selector specifying which fields to include in a partial response.
5192
- # @param [String] quota_user
5193
- # Available to use for quota purposes for server-side applications. Can be any
5194
- # arbitrary string assigned to a user, but should not exceed 40 characters.
5195
- # @param [Google::Apis::RequestOptions] options
5196
- # Request-specific options
5197
- #
5198
- # @yield [result, err] Result & error if block supplied
5199
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse] parsed result object
5200
- # @yieldparam err [StandardError] error object if request failed
5201
- #
5202
- # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse]
5203
- #
5204
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5205
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5206
- # @raise [Google::Apis::AuthorizationError] Authorization is required
5207
- def list_project_location_extension_deployment_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
5208
- command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
5209
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse::Representation
5210
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningListOperationsResponse
5211
- command.params['name'] = name unless name.nil?
5212
- command.query['filter'] = filter unless filter.nil?
5213
- command.query['pageSize'] = page_size unless page_size.nil?
5214
- command.query['pageToken'] = page_token unless page_token.nil?
5215
- command.query['fields'] = fields unless fields.nil?
5216
- command.query['quotaUser'] = quota_user unless quota_user.nil?
5217
- execute_or_queue_command(command, &block)
5218
- end
5219
-
5220
- # Waits until the specified long-running operation is done or reaches at most a
5221
- # specified timeout, returning the latest state. If the operation is already
5222
- # done, the latest state is immediately returned. If the timeout specified is
5223
- # greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If
5224
- # the server does not support this method, it returns `google.rpc.Code.
5225
- # UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return
5226
- # the latest state before the specified timeout (including immediately), meaning
5227
- # even an immediate response is no guarantee that the operation is done.
5228
- # @param [String] name
5229
- # The name of the operation resource to wait on.
5230
- # @param [String] timeout
5231
- # The maximum duration to wait before timing out. If left blank, the wait will
5232
- # be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
5233
- # context deadline is also specified, the shorter one will be used.
5234
- # @param [String] fields
5235
- # Selector specifying which fields to include in a partial response.
5236
- # @param [String] quota_user
5237
- # Available to use for quota purposes for server-side applications. Can be any
5238
- # arbitrary string assigned to a user, but should not exceed 40 characters.
5239
- # @param [Google::Apis::RequestOptions] options
5240
- # Request-specific options
5241
- #
5242
- # @yield [result, err] Result & error if block supplied
5243
- # @yieldparam result [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation] parsed result object
5244
- # @yieldparam err [StandardError] error object if request failed
5245
- #
5246
- # @return [Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation]
5247
- #
5248
- # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
5249
- # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
5250
- # @raise [Google::Apis::AuthorizationError] Authorization is required
5251
- def wait_project_location_extension_deployment_operation(name, timeout: nil, fields: nil, quota_user: nil, options: nil, &block)
5252
- command = make_simple_command(:post, 'v1beta1/{+name}:wait', options)
5253
- command.response_representation = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation::Representation
5254
- command.response_class = Google::Apis::AiplatformV1beta1::GoogleLongrunningOperation
5255
- command.params['name'] = name unless name.nil?
5256
- command.query['timeout'] = timeout unless timeout.nil?
5257
- command.query['fields'] = fields unless fields.nil?
5258
- command.query['quotaUser'] = quota_user unless quota_user.nil?
5259
- execute_or_queue_command(command, &block)
5260
- end
5261
-
5262
5445
  # Starts asynchronous cancellation on a long-running operation. The server makes
5263
5446
  # a best effort to cancel the operation, but success is not guaranteed. If the
5264
5447
  # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
@@ -5445,7 +5628,7 @@ module Google
5445
5628
  # Creates a new FeatureGroup in a given project and location.
5446
5629
  # @param [String] parent
5447
5630
  # Required. The resource name of the Location to create FeatureGroups. Format: `
5448
- # projects/`project`/locations/`location`'`
5631
+ # projects/`project`/locations/`location``
5449
5632
  # @param [Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureGroup] google_cloud_aiplatform_v1beta1_feature_group_object
5450
5633
  # @param [String] feature_group_id
5451
5634
  # Required. The ID to use for this FeatureGroup, which will become the final
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.25.0
4
+ version: 0.26.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-04-28 00:00:00.000000000 Z
11
+ date: 2024-05-05 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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-aiplatform_v1beta1/v0.26.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: []