@Generated("by gapic-generator-java")
Package com.google.cloud.aiplatform.v1beta1
The interfaces provided are listed below, along with usage samples.
======================= DatasetServiceClient =======================
Service Description: The service that manages Vertex AI Dataset and its child resources.
Sample for DatasetServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (DatasetServiceClient datasetServiceClient = DatasetServiceClient.create()) {
DatasetName name = DatasetName.of("[PROJECT]", "[LOCATION]", "[DATASET]");
Dataset response = datasetServiceClient.getDataset(name);
}
======================= DeploymentResourcePoolServiceClient =======================
Service Description: A service that manages the DeploymentResourcePool resource.
Sample for DeploymentResourcePoolServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (DeploymentResourcePoolServiceClient deploymentResourcePoolServiceClient =
DeploymentResourcePoolServiceClient.create()) {
DeploymentResourcePoolName name =
DeploymentResourcePoolName.of("[PROJECT]", "[LOCATION]", "[DEPLOYMENT_RESOURCE_POOL]");
DeploymentResourcePool response =
deploymentResourcePoolServiceClient.getDeploymentResourcePool(name);
}
======================= EndpointServiceClient =======================
Service Description: A service for managing Vertex AI's Endpoints.
Sample for EndpointServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (EndpointServiceClient endpointServiceClient = EndpointServiceClient.create()) {
EndpointName name =
EndpointName.ofProjectLocationEndpointName("[PROJECT]", "[LOCATION]", "[ENDPOINT]");
Endpoint response = endpointServiceClient.getEndpoint(name);
}
======================= FeaturestoreOnlineServingServiceClient =======================
Service Description: A service for serving online feature values.
Sample for FeaturestoreOnlineServingServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (FeaturestoreOnlineServingServiceClient featurestoreOnlineServingServiceClient =
FeaturestoreOnlineServingServiceClient.create()) {
EntityTypeName entityType =
EntityTypeName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]", "[ENTITY_TYPE]");
ReadFeatureValuesResponse response =
featurestoreOnlineServingServiceClient.readFeatureValues(entityType);
}
======================= FeaturestoreServiceClient =======================
Service Description: The service that handles CRUD and List for resources for Featurestore.
Sample for FeaturestoreServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (FeaturestoreServiceClient featurestoreServiceClient = FeaturestoreServiceClient.create()) {
FeaturestoreName name = FeaturestoreName.of("[PROJECT]", "[LOCATION]", "[FEATURESTORE]");
Featurestore response = featurestoreServiceClient.getFeaturestore(name);
}
======================= IndexEndpointServiceClient =======================
Service Description: A service for managing Vertex AI's IndexEndpoints.
Sample for IndexEndpointServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (IndexEndpointServiceClient indexEndpointServiceClient =
IndexEndpointServiceClient.create()) {
IndexEndpointName name = IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]");
IndexEndpoint response = indexEndpointServiceClient.getIndexEndpoint(name);
}
======================= IndexServiceClient =======================
Service Description: A service for creating and managing Vertex AI's Index resources.
Sample for IndexServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (IndexServiceClient indexServiceClient = IndexServiceClient.create()) {
IndexName name = IndexName.of("[PROJECT]", "[LOCATION]", "[INDEX]");
Index response = indexServiceClient.getIndex(name);
}
======================= JobServiceClient =======================
Service Description: A service for creating and managing Vertex AI's jobs.
Sample for JobServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (JobServiceClient jobServiceClient = JobServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
CustomJob customJob = CustomJob.newBuilder().build();
CustomJob response = jobServiceClient.createCustomJob(parent, customJob);
}
======================= MatchServiceClient =======================
Service Description: MatchService is a Google managed service for efficient vector similarity search at scale.
Sample for MatchServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (MatchServiceClient matchServiceClient = MatchServiceClient.create()) {
FindNeighborsRequest request =
FindNeighborsRequest.newBuilder()
.setIndexEndpoint(
IndexEndpointName.of("[PROJECT]", "[LOCATION]", "[INDEX_ENDPOINT]").toString())
.setDeployedIndexId("deployedIndexId-1101212953")
.addAllQueries(new ArrayList<FindNeighborsRequest.Query>())
.setReturnFullDatapoint(true)
.build();
FindNeighborsResponse response = matchServiceClient.findNeighbors(request);
}
======================= MetadataServiceClient =======================
Service Description: Service for reading and writing metadata entries.
Sample for MetadataServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
MetadataStoreName name = MetadataStoreName.of("[PROJECT]", "[LOCATION]", "[METADATA_STORE]");
MetadataStore response = metadataServiceClient.getMetadataStore(name);
}
======================= MigrationServiceClient =======================
Service Description: A service that migrates resources from automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com to Vertex AI.
Sample for MigrationServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (MigrationServiceClient migrationServiceClient = MigrationServiceClient.create()) {
GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
Location response = migrationServiceClient.getLocation(request);
}
======================= ModelGardenServiceClient =======================
Service Description: The interface of Model Garden Service.
Sample for ModelGardenServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ModelGardenServiceClient modelGardenServiceClient = ModelGardenServiceClient.create()) {
PublisherModelName name = PublisherModelName.of("[PUBLISHER]", "[MODEL]");
PublisherModel response = modelGardenServiceClient.getPublisherModel(name);
}
======================= ModelServiceClient =======================
Service Description: A service for managing Vertex AI's machine learning Models.
Sample for ModelServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ModelServiceClient modelServiceClient = ModelServiceClient.create()) {
ModelName name = ModelName.of("[PROJECT]", "[LOCATION]", "[MODEL]");
Model response = modelServiceClient.getModel(name);
}
======================= PersistentResourceServiceClient =======================
Service Description: A service for managing Vertex AI's machine learning PersistentResource.
Sample for PersistentResourceServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (PersistentResourceServiceClient persistentResourceServiceClient =
PersistentResourceServiceClient.create()) {
PersistentResourceName name =
PersistentResourceName.of("[PROJECT]", "[LOCATION]", "[PERSISTENT_RESOURCE]");
PersistentResource response = persistentResourceServiceClient.getPersistentResource(name);
}
======================= PipelineServiceClient =======================
Service Description: A service for creating and managing Vertex AI's pipelines. This includes both `TrainingPipeline` resources (used for AutoML and custom training) and `PipelineJob` resources (used for Vertex AI Pipelines).
Sample for PipelineServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (PipelineServiceClient pipelineServiceClient = PipelineServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
TrainingPipeline trainingPipeline = TrainingPipeline.newBuilder().build();
TrainingPipeline response =
pipelineServiceClient.createTrainingPipeline(parent, trainingPipeline);
}
======================= PredictionServiceClient =======================
Service Description: A service for online predictions and explanations.
Sample for PredictionServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (PredictionServiceClient predictionServiceClient = PredictionServiceClient.create()) {
EndpointName endpoint =
EndpointName.ofProjectLocationEndpointName("[PROJECT]", "[LOCATION]", "[ENDPOINT]");
List<Value> instances = new ArrayList<>();
Value parameters = Value.newBuilder().setBoolValue(true).build();
PredictResponse response = predictionServiceClient.predict(endpoint, instances, parameters);
}
======================= ScheduleServiceClient =======================
Service Description: A service for creating and managing Vertex AI's Schedule resources to periodically launch shceudled runs to make API calls.
Sample for ScheduleServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (ScheduleServiceClient scheduleServiceClient = ScheduleServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Schedule schedule = Schedule.newBuilder().build();
Schedule response = scheduleServiceClient.createSchedule(parent, schedule);
}
======================= SpecialistPoolServiceClient =======================
Service Description: A service for creating and managing Customer SpecialistPools. When customers start Data Labeling jobs, they can reuse/create Specialist Pools to bring their own Specialists to label the data. Customers can add/remove Managers for the Specialist Pool on Cloud console, then Managers will get email notifications to manage Specialists and tasks on CrowdCompute console.
Sample for SpecialistPoolServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (SpecialistPoolServiceClient specialistPoolServiceClient =
SpecialistPoolServiceClient.create()) {
SpecialistPoolName name =
SpecialistPoolName.of("[PROJECT]", "[LOCATION]", "[SPECIALIST_POOL]");
SpecialistPool response = specialistPoolServiceClient.getSpecialistPool(name);
}
======================= TensorboardServiceClient =======================
Service Description: TensorboardService
Sample for TensorboardServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (TensorboardServiceClient tensorboardServiceClient = TensorboardServiceClient.create()) {
TensorboardName name = TensorboardName.of("[PROJECT]", "[LOCATION]", "[TENSORBOARD]");
Tensorboard response = tensorboardServiceClient.getTensorboard(name);
}
======================= VizierServiceClient =======================
Service Description: Vertex AI Vizier API.
Vertex AI Vizier is a service to solve blackbox optimization problems, such as tuning machine learning hyperparameters and searching over deep learning architectures.
Sample for VizierServiceClient:
// This snippet has been automatically generated and should be regarded as a code template only.
// It will require modifications to work:
// - It may require correct/in-range values for request initialization.
// - It may require specifying regional endpoints when creating the service client as shown in
// https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
try (VizierServiceClient vizierServiceClient = VizierServiceClient.create()) {
LocationName parent = LocationName.of("[PROJECT]", "[LOCATION]");
Study study = Study.newBuilder().build();
Study response = vizierServiceClient.createStudy(parent, study);
}
-
Class Summary Class Description AcceleratorTypeProto ActiveLearningConfig Parameters that configure the active learning pipeline.ActiveLearningConfig.Builder Parameters that configure the active learning pipeline.AddContextArtifactsAndExecutionsRequest Request message for [MetadataService.AddContextArtifactsAndExecutions][google.cloud.aiplatform.v1beta1.MetadataService.AddContextArtifactsAndExecutions].AddContextArtifactsAndExecutionsRequest.Builder Request message for [MetadataService.AddContextArtifactsAndExecutions][google.cloud.aiplatform.v1beta1.MetadataService.AddContextArtifactsAndExecutions].AddContextArtifactsAndExecutionsResponse Response message for [MetadataService.AddContextArtifactsAndExecutions][google.cloud.aiplatform.v1beta1.MetadataService.AddContextArtifactsAndExecutions].AddContextArtifactsAndExecutionsResponse.Builder Response message for [MetadataService.AddContextArtifactsAndExecutions][google.cloud.aiplatform.v1beta1.MetadataService.AddContextArtifactsAndExecutions].AddContextChildrenRequest Request message for [MetadataService.AddContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.AddContextChildren].AddContextChildrenRequest.Builder Request message for [MetadataService.AddContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.AddContextChildren].AddContextChildrenResponse Response message for [MetadataService.AddContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.AddContextChildren].AddContextChildrenResponse.Builder Response message for [MetadataService.AddContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.AddContextChildren].AddExecutionEventsRequest Request message for [MetadataService.AddExecutionEvents][google.cloud.aiplatform.v1beta1.MetadataService.AddExecutionEvents].AddExecutionEventsRequest.Builder Request message for [MetadataService.AddExecutionEvents][google.cloud.aiplatform.v1beta1.MetadataService.AddExecutionEvents].AddExecutionEventsResponse Response message for [MetadataService.AddExecutionEvents][google.cloud.aiplatform.v1beta1.MetadataService.AddExecutionEvents].AddExecutionEventsResponse.Builder Response message for [MetadataService.AddExecutionEvents][google.cloud.aiplatform.v1beta1.MetadataService.AddExecutionEvents].AddTrialMeasurementRequest Request message for [VizierService.AddTrialMeasurement][google.cloud.aiplatform.v1beta1.VizierService.AddTrialMeasurement].AddTrialMeasurementRequest.Builder Request message for [VizierService.AddTrialMeasurement][google.cloud.aiplatform.v1beta1.VizierService.AddTrialMeasurement].Annotation Used to assign specific AnnotationSpec to a particular area of a DataItem or the whole part of the DataItem.Annotation.Builder Used to assign specific AnnotationSpec to a particular area of a DataItem or the whole part of the DataItem.AnnotationProto AnnotationSpec Identifies a concept with which DataItems may be annotated with.AnnotationSpec.Builder Identifies a concept with which DataItems may be annotated with.AnnotationSpecName AnnotationSpecName.Builder Builder for projects/{project}/locations/{location}/datasets/{dataset}/annotationSpecs/{annotation_spec}.AnnotationSpecProto Artifact Instance of a general artifact.Artifact.Builder Instance of a general artifact.ArtifactName ArtifactName.Builder Builder for projects/{project}/locations/{location}/metadataStores/{metadata_store}/artifacts/{artifact}.ArtifactProto Attribution Attribution that explains a particular prediction output.Attribution.Builder Attribution that explains a particular prediction output.AutomaticResources A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration.AutomaticResources.Builder A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration.AutoscalingMetricSpec The metric specification that defines the target resource utilization (CPU utilization, accelerator's duty cycle, and so on) for calculating the desired replica count.AutoscalingMetricSpec.Builder The metric specification that defines the target resource utilization (CPU utilization, accelerator's duty cycle, and so on) for calculating the desired replica count.AvroSource The storage details for Avro input content.AvroSource.Builder The storage details for Avro input content.BatchCreateFeaturesOperationMetadata Details of operations that perform batch create Features.BatchCreateFeaturesOperationMetadata.Builder Details of operations that perform batch create Features.BatchCreateFeaturesRequest Request message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchCreateFeatures].BatchCreateFeaturesRequest.Builder Request message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchCreateFeatures].BatchCreateFeaturesResponse Response message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchCreateFeatures].BatchCreateFeaturesResponse.Builder Response message for [FeaturestoreService.BatchCreateFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchCreateFeatures].BatchCreateTensorboardRunsRequest Request message for [TensorboardService.BatchCreateTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardRuns].BatchCreateTensorboardRunsRequest.Builder Request message for [TensorboardService.BatchCreateTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardRuns].BatchCreateTensorboardRunsResponse Response message for [TensorboardService.BatchCreateTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardRuns].BatchCreateTensorboardRunsResponse.Builder Response message for [TensorboardService.BatchCreateTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardRuns].BatchCreateTensorboardTimeSeriesRequest Request message for [TensorboardService.BatchCreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardTimeSeries].BatchCreateTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.BatchCreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardTimeSeries].BatchCreateTensorboardTimeSeriesResponse Response message for [TensorboardService.BatchCreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardTimeSeries].BatchCreateTensorboardTimeSeriesResponse.Builder Response message for [TensorboardService.BatchCreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.BatchCreateTensorboardTimeSeries].BatchDedicatedResources A description of resources that are used for performing batch operations, are dedicated to a Model, and need manual configuration.BatchDedicatedResources.Builder A description of resources that are used for performing batch operations, are dedicated to a Model, and need manual configuration.BatchImportEvaluatedAnnotationsRequest Request message for [ModelService.BatchImportEvaluatedAnnotations][google.cloud.aiplatform.v1beta1.ModelService.BatchImportEvaluatedAnnotations]BatchImportEvaluatedAnnotationsRequest.Builder Request message for [ModelService.BatchImportEvaluatedAnnotations][google.cloud.aiplatform.v1beta1.ModelService.BatchImportEvaluatedAnnotations]BatchImportEvaluatedAnnotationsResponse Response message for [ModelService.BatchImportEvaluatedAnnotations][google.cloud.aiplatform.v1beta1.ModelService.BatchImportEvaluatedAnnotations]BatchImportEvaluatedAnnotationsResponse.Builder Response message for [ModelService.BatchImportEvaluatedAnnotations][google.cloud.aiplatform.v1beta1.ModelService.BatchImportEvaluatedAnnotations]BatchImportModelEvaluationSlicesRequest Request message for [ModelService.BatchImportModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.BatchImportModelEvaluationSlices]BatchImportModelEvaluationSlicesRequest.Builder Request message for [ModelService.BatchImportModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.BatchImportModelEvaluationSlices]BatchImportModelEvaluationSlicesResponse Response message for [ModelService.BatchImportModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.BatchImportModelEvaluationSlices]BatchImportModelEvaluationSlicesResponse.Builder Response message for [ModelService.BatchImportModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.BatchImportModelEvaluationSlices]BatchMigrateResourcesOperationMetadata Runtime operation information for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchMigrateResourcesOperationMetadata.Builder Runtime operation information for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchMigrateResourcesOperationMetadata.PartialResult Represents a partial result in batch migration operation for one [MigrateResourceRequest][google.cloud.aiplatform.v1beta1.MigrateResourceRequest].BatchMigrateResourcesOperationMetadata.PartialResult.Builder Represents a partial result in batch migration operation for one [MigrateResourceRequest][google.cloud.aiplatform.v1beta1.MigrateResourceRequest].BatchMigrateResourcesRequest Request message for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchMigrateResourcesRequest.Builder Request message for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchMigrateResourcesResponse Response message for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchMigrateResourcesResponse.Builder Response message for [MigrationService.BatchMigrateResources][google.cloud.aiplatform.v1beta1.MigrationService.BatchMigrateResources].BatchPredictionJob A job that uses a [Model][google.cloud.aiplatform.v1beta1.BatchPredictionJob.model] to produce predictions on multiple [input instances][google.cloud.aiplatform.v1beta1.BatchPredictionJob.input_config].BatchPredictionJob.Builder A job that uses a [Model][google.cloud.aiplatform.v1beta1.BatchPredictionJob.model] to produce predictions on multiple [input instances][google.cloud.aiplatform.v1beta1.BatchPredictionJob.input_config].BatchPredictionJob.InputConfig Configures the input to [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].BatchPredictionJob.InputConfig.Builder Configures the input to [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].BatchPredictionJob.InstanceConfig Configuration defining how to transform batch prediction input instances to the instances that the Model accepts.BatchPredictionJob.InstanceConfig.Builder Configuration defining how to transform batch prediction input instances to the instances that the Model accepts.BatchPredictionJob.OutputConfig Configures the output of [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].BatchPredictionJob.OutputConfig.Builder Configures the output of [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].BatchPredictionJob.OutputInfo Further describes this job's output.BatchPredictionJob.OutputInfo.Builder Further describes this job's output.BatchPredictionJobName BatchPredictionJobName.Builder Builder for projects/{project}/locations/{location}/batchPredictionJobs/{batch_prediction_job}.BatchPredictionJobProto BatchReadFeatureValuesOperationMetadata Details of operations that batch reads Feature values.BatchReadFeatureValuesOperationMetadata.Builder Details of operations that batch reads Feature values.BatchReadFeatureValuesRequest Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].BatchReadFeatureValuesRequest.Builder Request message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].BatchReadFeatureValuesRequest.EntityTypeSpec Selects Features of an EntityType to read values of and specifies read settings.BatchReadFeatureValuesRequest.EntityTypeSpec.Builder Selects Features of an EntityType to read values of and specifies read settings.BatchReadFeatureValuesRequest.PassThroughField Describe pass-through fields in read_instance source.BatchReadFeatureValuesRequest.PassThroughField.Builder Describe pass-through fields in read_instance source.BatchReadFeatureValuesResponse Response message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].BatchReadFeatureValuesResponse.Builder Response message for [FeaturestoreService.BatchReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.BatchReadFeatureValues].BatchReadTensorboardTimeSeriesDataRequest Request message for [TensorboardService.BatchReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.BatchReadTensorboardTimeSeriesData].BatchReadTensorboardTimeSeriesDataRequest.Builder Request message for [TensorboardService.BatchReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.BatchReadTensorboardTimeSeriesData].BatchReadTensorboardTimeSeriesDataResponse Response message for [TensorboardService.BatchReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.BatchReadTensorboardTimeSeriesData].BatchReadTensorboardTimeSeriesDataResponse.Builder Response message for [TensorboardService.BatchReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.BatchReadTensorboardTimeSeriesData].BigQueryDestination The BigQuery location for the output content.BigQueryDestination.Builder The BigQuery location for the output content.BigQuerySource The BigQuery location for the input content.BigQuerySource.Builder The BigQuery location for the input content.BlurBaselineConfig Config for blur baseline.BlurBaselineConfig.Builder Config for blur baseline.BoolArray A list of boolean values.BoolArray.Builder A list of boolean values.CancelBatchPredictionJobRequest Request message for [JobService.CancelBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.CancelBatchPredictionJob].CancelBatchPredictionJobRequest.Builder Request message for [JobService.CancelBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.CancelBatchPredictionJob].CancelCustomJobRequest Request message for [JobService.CancelCustomJob][google.cloud.aiplatform.v1beta1.JobService.CancelCustomJob].CancelCustomJobRequest.Builder Request message for [JobService.CancelCustomJob][google.cloud.aiplatform.v1beta1.JobService.CancelCustomJob].CancelDataLabelingJobRequest Request message for [JobService.CancelDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.CancelDataLabelingJob].CancelDataLabelingJobRequest.Builder Request message for [JobService.CancelDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.CancelDataLabelingJob].CancelHyperparameterTuningJobRequest Request message for [JobService.CancelHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.CancelHyperparameterTuningJob].CancelHyperparameterTuningJobRequest.Builder Request message for [JobService.CancelHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.CancelHyperparameterTuningJob].CancelNasJobRequest Request message for [JobService.CancelNasJob][google.cloud.aiplatform.v1beta1.JobService.CancelNasJob].CancelNasJobRequest.Builder Request message for [JobService.CancelNasJob][google.cloud.aiplatform.v1beta1.JobService.CancelNasJob].CancelPipelineJobRequest Request message for [PipelineService.CancelPipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.CancelPipelineJob].CancelPipelineJobRequest.Builder Request message for [PipelineService.CancelPipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.CancelPipelineJob].CancelTrainingPipelineRequest Request message for [PipelineService.CancelTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.CancelTrainingPipeline].CancelTrainingPipelineRequest.Builder Request message for [PipelineService.CancelTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.CancelTrainingPipeline].CheckTrialEarlyStoppingStateMetatdata This message will be placed in the metadata field of a google.longrunning.Operation associated with a CheckTrialEarlyStoppingState request.CheckTrialEarlyStoppingStateMetatdata.Builder This message will be placed in the metadata field of a google.longrunning.Operation associated with a CheckTrialEarlyStoppingState request.CheckTrialEarlyStoppingStateRequest Request message for [VizierService.CheckTrialEarlyStoppingState][google.cloud.aiplatform.v1beta1.VizierService.CheckTrialEarlyStoppingState].CheckTrialEarlyStoppingStateRequest.Builder Request message for [VizierService.CheckTrialEarlyStoppingState][google.cloud.aiplatform.v1beta1.VizierService.CheckTrialEarlyStoppingState].CheckTrialEarlyStoppingStateResponse Response message for [VizierService.CheckTrialEarlyStoppingState][google.cloud.aiplatform.v1beta1.VizierService.CheckTrialEarlyStoppingState].CheckTrialEarlyStoppingStateResponse.Builder Response message for [VizierService.CheckTrialEarlyStoppingState][google.cloud.aiplatform.v1beta1.VizierService.CheckTrialEarlyStoppingState].CompleteTrialRequest Request message for [VizierService.CompleteTrial][google.cloud.aiplatform.v1beta1.VizierService.CompleteTrial].CompleteTrialRequest.Builder Request message for [VizierService.CompleteTrial][google.cloud.aiplatform.v1beta1.VizierService.CompleteTrial].CompletionStats Success and error statistics of processing multiple entities (for example, DataItems or structured data rows) in batch.CompletionStats.Builder Success and error statistics of processing multiple entities (for example, DataItems or structured data rows) in batch.CompletionStatsProto ContainerRegistryDestination The Container Registry location for the container image.ContainerRegistryDestination.Builder The Container Registry location for the container image.ContainerSpec The spec of a Container.ContainerSpec.Builder The spec of a Container.Context Instance of a general context.Context.Builder Instance of a general context.ContextName ContextName.Builder Builder for projects/{project}/locations/{location}/metadataStores/{metadata_store}/contexts/{context}.ContextProto CopyModelOperationMetadata Details of [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel] operation.CopyModelOperationMetadata.Builder Details of [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel] operation.CopyModelRequest Request message for [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel].CopyModelRequest.Builder Request message for [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel].CopyModelResponse Response message of [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel] operation.CopyModelResponse.Builder Response message of [ModelService.CopyModel][google.cloud.aiplatform.v1beta1.ModelService.CopyModel] operation.CountTokensRequest Request message for [PredictionService.CountTokens][google.cloud.aiplatform.v1beta1.PredictionService.CountTokens].CountTokensRequest.Builder Request message for [PredictionService.CountTokens][google.cloud.aiplatform.v1beta1.PredictionService.CountTokens].CountTokensResponse Response message for [PredictionService.CountTokens][google.cloud.aiplatform.v1beta1.PredictionService.CountTokens].CountTokensResponse.Builder Response message for [PredictionService.CountTokens][google.cloud.aiplatform.v1beta1.PredictionService.CountTokens].CreateArtifactRequest Request message for [MetadataService.CreateArtifact][google.cloud.aiplatform.v1beta1.MetadataService.CreateArtifact].CreateArtifactRequest.Builder Request message for [MetadataService.CreateArtifact][google.cloud.aiplatform.v1beta1.MetadataService.CreateArtifact].CreateBatchPredictionJobRequest Request message for [JobService.CreateBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.CreateBatchPredictionJob].CreateBatchPredictionJobRequest.Builder Request message for [JobService.CreateBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.CreateBatchPredictionJob].CreateContextRequest Request message for [MetadataService.CreateContext][google.cloud.aiplatform.v1beta1.MetadataService.CreateContext].CreateContextRequest.Builder Request message for [MetadataService.CreateContext][google.cloud.aiplatform.v1beta1.MetadataService.CreateContext].CreateCustomJobRequest Request message for [JobService.CreateCustomJob][google.cloud.aiplatform.v1beta1.JobService.CreateCustomJob].CreateCustomJobRequest.Builder Request message for [JobService.CreateCustomJob][google.cloud.aiplatform.v1beta1.JobService.CreateCustomJob].CreateDataLabelingJobRequest Request message for [JobService.CreateDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.CreateDataLabelingJob].CreateDataLabelingJobRequest.Builder Request message for [JobService.CreateDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.CreateDataLabelingJob].CreateDatasetOperationMetadata Runtime operation information for [DatasetService.CreateDataset][google.cloud.aiplatform.v1beta1.DatasetService.CreateDataset].CreateDatasetOperationMetadata.Builder Runtime operation information for [DatasetService.CreateDataset][google.cloud.aiplatform.v1beta1.DatasetService.CreateDataset].CreateDatasetRequest Request message for [DatasetService.CreateDataset][google.cloud.aiplatform.v1beta1.DatasetService.CreateDataset].CreateDatasetRequest.Builder Request message for [DatasetService.CreateDataset][google.cloud.aiplatform.v1beta1.DatasetService.CreateDataset].CreateDatasetVersionOperationMetadata Runtime operation information for [DatasetService.CreateDatasetVersion][google.cloud.aiplatform.v1beta1.DatasetService.CreateDatasetVersion].CreateDatasetVersionOperationMetadata.Builder Runtime operation information for [DatasetService.CreateDatasetVersion][google.cloud.aiplatform.v1beta1.DatasetService.CreateDatasetVersion].CreateDeploymentResourcePoolOperationMetadata Runtime operation information for CreateDeploymentResourcePool method.CreateDeploymentResourcePoolOperationMetadata.Builder Runtime operation information for CreateDeploymentResourcePool method.CreateDeploymentResourcePoolRequest Request message for CreateDeploymentResourcePool method.CreateDeploymentResourcePoolRequest.Builder Request message for CreateDeploymentResourcePool method.CreateEndpointOperationMetadata Runtime operation information for [EndpointService.CreateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.CreateEndpoint].CreateEndpointOperationMetadata.Builder Runtime operation information for [EndpointService.CreateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.CreateEndpoint].CreateEndpointRequest Request message for [EndpointService.CreateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.CreateEndpoint].CreateEndpointRequest.Builder Request message for [EndpointService.CreateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.CreateEndpoint].CreateEntityTypeOperationMetadata Details of operations that perform create EntityType.CreateEntityTypeOperationMetadata.Builder Details of operations that perform create EntityType.CreateEntityTypeRequest Request message for [FeaturestoreService.CreateEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateEntityType].CreateEntityTypeRequest.Builder Request message for [FeaturestoreService.CreateEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateEntityType].CreateExecutionRequest Request message for [MetadataService.CreateExecution][google.cloud.aiplatform.v1beta1.MetadataService.CreateExecution].CreateExecutionRequest.Builder Request message for [MetadataService.CreateExecution][google.cloud.aiplatform.v1beta1.MetadataService.CreateExecution].CreateFeatureOperationMetadata Details of operations that perform create Feature.CreateFeatureOperationMetadata.Builder Details of operations that perform create Feature.CreateFeatureRequest Request message for [FeaturestoreService.CreateFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateFeature].CreateFeatureRequest.Builder Request message for [FeaturestoreService.CreateFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateFeature].CreateFeaturestoreOperationMetadata Details of operations that perform create Featurestore.CreateFeaturestoreOperationMetadata.Builder Details of operations that perform create Featurestore.CreateFeaturestoreRequest Request message for [FeaturestoreService.CreateFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateFeaturestore].CreateFeaturestoreRequest.Builder Request message for [FeaturestoreService.CreateFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.CreateFeaturestore].CreateHyperparameterTuningJobRequest Request message for [JobService.CreateHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.CreateHyperparameterTuningJob].CreateHyperparameterTuningJobRequest.Builder Request message for [JobService.CreateHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.CreateHyperparameterTuningJob].CreateIndexEndpointOperationMetadata Runtime operation information for [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.CreateIndexEndpoint].CreateIndexEndpointOperationMetadata.Builder Runtime operation information for [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.CreateIndexEndpoint].CreateIndexEndpointRequest Request message for [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.CreateIndexEndpoint].CreateIndexEndpointRequest.Builder Request message for [IndexEndpointService.CreateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.CreateIndexEndpoint].CreateIndexOperationMetadata Runtime operation information for [IndexService.CreateIndex][google.cloud.aiplatform.v1beta1.IndexService.CreateIndex].CreateIndexOperationMetadata.Builder Runtime operation information for [IndexService.CreateIndex][google.cloud.aiplatform.v1beta1.IndexService.CreateIndex].CreateIndexRequest Request message for [IndexService.CreateIndex][google.cloud.aiplatform.v1beta1.IndexService.CreateIndex].CreateIndexRequest.Builder Request message for [IndexService.CreateIndex][google.cloud.aiplatform.v1beta1.IndexService.CreateIndex].CreateMetadataSchemaRequest Request message for [MetadataService.CreateMetadataSchema][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataSchema].CreateMetadataSchemaRequest.Builder Request message for [MetadataService.CreateMetadataSchema][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataSchema].CreateMetadataStoreOperationMetadata Details of operations that perform [MetadataService.CreateMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataStore].CreateMetadataStoreOperationMetadata.Builder Details of operations that perform [MetadataService.CreateMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataStore].CreateMetadataStoreRequest Request message for [MetadataService.CreateMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataStore].CreateMetadataStoreRequest.Builder Request message for [MetadataService.CreateMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.CreateMetadataStore].CreateModelDeploymentMonitoringJobRequest Request message for [JobService.CreateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.CreateModelDeploymentMonitoringJob].CreateModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.CreateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.CreateModelDeploymentMonitoringJob].CreateNasJobRequest Request message for [JobService.CreateNasJob][google.cloud.aiplatform.v1beta1.JobService.CreateNasJob].CreateNasJobRequest.Builder Request message for [JobService.CreateNasJob][google.cloud.aiplatform.v1beta1.JobService.CreateNasJob].CreatePersistentResourceOperationMetadata Details of operations that perform create PersistentResource.CreatePersistentResourceOperationMetadata.Builder Details of operations that perform create PersistentResource.CreatePersistentResourceRequest Request message for [PersistentResourceService.CreatePersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.CreatePersistentResource].CreatePersistentResourceRequest.Builder Request message for [PersistentResourceService.CreatePersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.CreatePersistentResource].CreatePipelineJobRequest Request message for [PipelineService.CreatePipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.CreatePipelineJob].CreatePipelineJobRequest.Builder Request message for [PipelineService.CreatePipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.CreatePipelineJob].CreateScheduleRequest Request message for [ScheduleService.CreateSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.CreateSchedule].CreateScheduleRequest.Builder Request message for [ScheduleService.CreateSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.CreateSchedule].CreateSpecialistPoolOperationMetadata Runtime operation information for [SpecialistPoolService.CreateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.CreateSpecialistPool].CreateSpecialistPoolOperationMetadata.Builder Runtime operation information for [SpecialistPoolService.CreateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.CreateSpecialistPool].CreateSpecialistPoolRequest Request message for [SpecialistPoolService.CreateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.CreateSpecialistPool].CreateSpecialistPoolRequest.Builder Request message for [SpecialistPoolService.CreateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.CreateSpecialistPool].CreateStudyRequest Request message for [VizierService.CreateStudy][google.cloud.aiplatform.v1beta1.VizierService.CreateStudy].CreateStudyRequest.Builder Request message for [VizierService.CreateStudy][google.cloud.aiplatform.v1beta1.VizierService.CreateStudy].CreateTensorboardExperimentRequest Request message for [TensorboardService.CreateTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardExperiment].CreateTensorboardExperimentRequest.Builder Request message for [TensorboardService.CreateTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardExperiment].CreateTensorboardOperationMetadata Details of operations that perform create Tensorboard.CreateTensorboardOperationMetadata.Builder Details of operations that perform create Tensorboard.CreateTensorboardRequest Request message for [TensorboardService.CreateTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboard].CreateTensorboardRequest.Builder Request message for [TensorboardService.CreateTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboard].CreateTensorboardRunRequest Request message for [TensorboardService.CreateTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardRun].CreateTensorboardRunRequest.Builder Request message for [TensorboardService.CreateTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardRun].CreateTensorboardTimeSeriesRequest Request message for [TensorboardService.CreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardTimeSeries].CreateTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.CreateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.CreateTensorboardTimeSeries].CreateTrainingPipelineRequest Request message for [PipelineService.CreateTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.CreateTrainingPipeline].CreateTrainingPipelineRequest.Builder Request message for [PipelineService.CreateTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.CreateTrainingPipeline].CreateTrialRequest Request message for [VizierService.CreateTrial][google.cloud.aiplatform.v1beta1.VizierService.CreateTrial].CreateTrialRequest.Builder Request message for [VizierService.CreateTrial][google.cloud.aiplatform.v1beta1.VizierService.CreateTrial].CsvDestination The storage details for CSV output content.CsvDestination.Builder The storage details for CSV output content.CsvSource The storage details for CSV input content.CsvSource.Builder The storage details for CSV input content.CustomJob Represents a job that runs custom workloads such as a Docker container or a Python package.CustomJob.Builder Represents a job that runs custom workloads such as a Docker container or a Python package.CustomJobName CustomJobName.Builder Builder for projects/{project}/locations/{location}/customJobs/{custom_job}.CustomJobProto CustomJobSpec Represents the spec of a CustomJob.CustomJobSpec.Builder Represents the spec of a CustomJob.DataItem A piece of data in a Dataset.DataItem.Builder A piece of data in a Dataset.DataItemName DataItemName.Builder Builder for projects/{project}/locations/{location}/datasets/{dataset}/dataItems/{data_item}.DataItemProto DataItemView A container for a single DataItem and Annotations on it.DataItemView.Builder A container for a single DataItem and Annotations on it.DataLabelingJob DataLabelingJob is used to trigger a human labeling job on unlabeled data from the following Dataset:DataLabelingJob.Builder DataLabelingJob is used to trigger a human labeling job on unlabeled data from the following Dataset:DataLabelingJobName DataLabelingJobName.Builder Builder for projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}.DataLabelingJobProto Dataset A collection of DataItems and Annotations on them.Dataset.Builder A collection of DataItems and Annotations on them.DatasetName DatasetName.Builder Builder for projects/{project}/locations/{location}/datasets/{dataset}.DatasetProto DatasetServiceClient Service Description: The service that manages Vertex AI Dataset and its child resources.DatasetServiceClient.ListAnnotationsFixedSizeCollection DatasetServiceClient.ListAnnotationsPage DatasetServiceClient.ListAnnotationsPagedResponse DatasetServiceClient.ListDataItemsFixedSizeCollection DatasetServiceClient.ListDataItemsPage DatasetServiceClient.ListDataItemsPagedResponse DatasetServiceClient.ListDatasetsFixedSizeCollection DatasetServiceClient.ListDatasetsPage DatasetServiceClient.ListDatasetsPagedResponse DatasetServiceClient.ListLocationsFixedSizeCollection DatasetServiceClient.ListLocationsPage DatasetServiceClient.ListLocationsPagedResponse DatasetServiceClient.ListSavedQueriesFixedSizeCollection DatasetServiceClient.ListSavedQueriesPage DatasetServiceClient.ListSavedQueriesPagedResponse DatasetServiceClient.SearchDataItemsFixedSizeCollection DatasetServiceClient.SearchDataItemsPage DatasetServiceClient.SearchDataItemsPagedResponse DatasetServiceGrpc The service that manages Vertex AI Dataset and its child resources.DatasetServiceGrpc.DatasetServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service DatasetService.DatasetServiceGrpc.DatasetServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service DatasetService.DatasetServiceGrpc.DatasetServiceImplBase Base class for the server implementation of the service DatasetService.DatasetServiceGrpc.DatasetServiceStub A stub to allow clients to do asynchronous rpc calls to service DatasetService.DatasetServiceProto DatasetServiceSettings Settings class to configure an instance ofDatasetServiceClient
.DatasetServiceSettings.Builder Builder for DatasetServiceSettings.DedicatedResources A description of resources that are dedicated to a DeployedModel, and that need a higher degree of manual configuration.DedicatedResources.Builder A description of resources that are dedicated to a DeployedModel, and that need a higher degree of manual configuration.DeleteArtifactRequest Request message for [MetadataService.DeleteArtifact][google.cloud.aiplatform.v1beta1.MetadataService.DeleteArtifact].DeleteArtifactRequest.Builder Request message for [MetadataService.DeleteArtifact][google.cloud.aiplatform.v1beta1.MetadataService.DeleteArtifact].DeleteBatchPredictionJobRequest Request message for [JobService.DeleteBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.DeleteBatchPredictionJob].DeleteBatchPredictionJobRequest.Builder Request message for [JobService.DeleteBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.DeleteBatchPredictionJob].DeleteContextRequest Request message for [MetadataService.DeleteContext][google.cloud.aiplatform.v1beta1.MetadataService.DeleteContext].DeleteContextRequest.Builder Request message for [MetadataService.DeleteContext][google.cloud.aiplatform.v1beta1.MetadataService.DeleteContext].DeleteCustomJobRequest Request message for [JobService.DeleteCustomJob][google.cloud.aiplatform.v1beta1.JobService.DeleteCustomJob].DeleteCustomJobRequest.Builder Request message for [JobService.DeleteCustomJob][google.cloud.aiplatform.v1beta1.JobService.DeleteCustomJob].DeleteDataLabelingJobRequest Request message for [JobService.DeleteDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.DeleteDataLabelingJob].DeleteDataLabelingJobRequest.Builder Request message for [JobService.DeleteDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.DeleteDataLabelingJob].DeleteDatasetRequest Request message for [DatasetService.DeleteDataset][google.cloud.aiplatform.v1beta1.DatasetService.DeleteDataset].DeleteDatasetRequest.Builder Request message for [DatasetService.DeleteDataset][google.cloud.aiplatform.v1beta1.DatasetService.DeleteDataset].DeleteDeploymentResourcePoolRequest Request message for DeleteDeploymentResourcePool method.DeleteDeploymentResourcePoolRequest.Builder Request message for DeleteDeploymentResourcePool method.DeleteEndpointRequest Request message for [EndpointService.DeleteEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.DeleteEndpoint].DeleteEndpointRequest.Builder Request message for [EndpointService.DeleteEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.DeleteEndpoint].DeleteEntityTypeRequest Request message for [FeaturestoreService.DeleteEntityTypes][].DeleteEntityTypeRequest.Builder Request message for [FeaturestoreService.DeleteEntityTypes][].DeleteExecutionRequest Request message for [MetadataService.DeleteExecution][google.cloud.aiplatform.v1beta1.MetadataService.DeleteExecution].DeleteExecutionRequest.Builder Request message for [MetadataService.DeleteExecution][google.cloud.aiplatform.v1beta1.MetadataService.DeleteExecution].DeleteFeatureRequest Request message for [FeaturestoreService.DeleteFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeature].DeleteFeatureRequest.Builder Request message for [FeaturestoreService.DeleteFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeature].DeleteFeaturestoreRequest Request message for [FeaturestoreService.DeleteFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeaturestore].DeleteFeaturestoreRequest.Builder Request message for [FeaturestoreService.DeleteFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeaturestore].DeleteFeatureValuesOperationMetadata Details of operations that delete Feature values.DeleteFeatureValuesOperationMetadata.Builder Details of operations that delete Feature values.DeleteFeatureValuesRequest Request message for [FeaturestoreService.DeleteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeatureValues].DeleteFeatureValuesRequest.Builder Request message for [FeaturestoreService.DeleteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeatureValues].DeleteFeatureValuesRequest.SelectEntity Message to select entity.DeleteFeatureValuesRequest.SelectEntity.Builder Message to select entity.DeleteFeatureValuesRequest.SelectTimeRangeAndFeature Message to select time range and feature.DeleteFeatureValuesRequest.SelectTimeRangeAndFeature.Builder Message to select time range and feature.DeleteFeatureValuesResponse Response message for [FeaturestoreService.DeleteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeatureValues].DeleteFeatureValuesResponse.Builder Response message for [FeaturestoreService.DeleteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.DeleteFeatureValues].DeleteFeatureValuesResponse.SelectEntity Response message if the request uses the SelectEntity option.DeleteFeatureValuesResponse.SelectEntity.Builder Response message if the request uses the SelectEntity option.DeleteFeatureValuesResponse.SelectTimeRangeAndFeature Response message if the request uses the SelectTimeRangeAndFeature option.DeleteFeatureValuesResponse.SelectTimeRangeAndFeature.Builder Response message if the request uses the SelectTimeRangeAndFeature option.DeleteHyperparameterTuningJobRequest Request message for [JobService.DeleteHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.DeleteHyperparameterTuningJob].DeleteHyperparameterTuningJobRequest.Builder Request message for [JobService.DeleteHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.DeleteHyperparameterTuningJob].DeleteIndexEndpointRequest Request message for [IndexEndpointService.DeleteIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeleteIndexEndpoint].DeleteIndexEndpointRequest.Builder Request message for [IndexEndpointService.DeleteIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeleteIndexEndpoint].DeleteIndexRequest Request message for [IndexService.DeleteIndex][google.cloud.aiplatform.v1beta1.IndexService.DeleteIndex].DeleteIndexRequest.Builder Request message for [IndexService.DeleteIndex][google.cloud.aiplatform.v1beta1.IndexService.DeleteIndex].DeleteMetadataStoreOperationMetadata Details of operations that perform [MetadataService.DeleteMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.DeleteMetadataStore].DeleteMetadataStoreOperationMetadata.Builder Details of operations that perform [MetadataService.DeleteMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.DeleteMetadataStore].DeleteMetadataStoreRequest Request message for [MetadataService.DeleteMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.DeleteMetadataStore].DeleteMetadataStoreRequest.Builder Request message for [MetadataService.DeleteMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.DeleteMetadataStore].DeleteModelDeploymentMonitoringJobRequest Request message for [JobService.DeleteModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.DeleteModelDeploymentMonitoringJob].DeleteModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.DeleteModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.DeleteModelDeploymentMonitoringJob].DeleteModelRequest Request message for [ModelService.DeleteModel][google.cloud.aiplatform.v1beta1.ModelService.DeleteModel].DeleteModelRequest.Builder Request message for [ModelService.DeleteModel][google.cloud.aiplatform.v1beta1.ModelService.DeleteModel].DeleteModelVersionRequest Request message for [ModelService.DeleteModelVersion][google.cloud.aiplatform.v1beta1.ModelService.DeleteModelVersion].DeleteModelVersionRequest.Builder Request message for [ModelService.DeleteModelVersion][google.cloud.aiplatform.v1beta1.ModelService.DeleteModelVersion].DeleteNasJobRequest Request message for [JobService.DeleteNasJob][google.cloud.aiplatform.v1beta1.JobService.DeleteNasJob].DeleteNasJobRequest.Builder Request message for [JobService.DeleteNasJob][google.cloud.aiplatform.v1beta1.JobService.DeleteNasJob].DeleteOperationMetadata Details of operations that perform deletes of any entities.DeleteOperationMetadata.Builder Details of operations that perform deletes of any entities.DeletePersistentResourceRequest Request message for [PersistentResourceService.DeletePersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.DeletePersistentResource].DeletePersistentResourceRequest.Builder Request message for [PersistentResourceService.DeletePersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.DeletePersistentResource].DeletePipelineJobRequest Request message for [PipelineService.DeletePipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.DeletePipelineJob].DeletePipelineJobRequest.Builder Request message for [PipelineService.DeletePipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.DeletePipelineJob].DeleteSavedQueryRequest Request message for [DatasetService.DeleteSavedQuery][google.cloud.aiplatform.v1beta1.DatasetService.DeleteSavedQuery].DeleteSavedQueryRequest.Builder Request message for [DatasetService.DeleteSavedQuery][google.cloud.aiplatform.v1beta1.DatasetService.DeleteSavedQuery].DeleteScheduleRequest Request message for [ScheduleService.DeleteSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.DeleteSchedule].DeleteScheduleRequest.Builder Request message for [ScheduleService.DeleteSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.DeleteSchedule].DeleteSpecialistPoolRequest Request message for [SpecialistPoolService.DeleteSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.DeleteSpecialistPool].DeleteSpecialistPoolRequest.Builder Request message for [SpecialistPoolService.DeleteSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.DeleteSpecialistPool].DeleteStudyRequest Request message for [VizierService.DeleteStudy][google.cloud.aiplatform.v1beta1.VizierService.DeleteStudy].DeleteStudyRequest.Builder Request message for [VizierService.DeleteStudy][google.cloud.aiplatform.v1beta1.VizierService.DeleteStudy].DeleteTensorboardExperimentRequest Request message for [TensorboardService.DeleteTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardExperiment].DeleteTensorboardExperimentRequest.Builder Request message for [TensorboardService.DeleteTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardExperiment].DeleteTensorboardRequest Request message for [TensorboardService.DeleteTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboard].DeleteTensorboardRequest.Builder Request message for [TensorboardService.DeleteTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboard].DeleteTensorboardRunRequest Request message for [TensorboardService.DeleteTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardRun].DeleteTensorboardRunRequest.Builder Request message for [TensorboardService.DeleteTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardRun].DeleteTensorboardTimeSeriesRequest Request message for [TensorboardService.DeleteTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardTimeSeries].DeleteTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.DeleteTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.DeleteTensorboardTimeSeries].DeleteTrainingPipelineRequest Request message for [PipelineService.DeleteTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.DeleteTrainingPipeline].DeleteTrainingPipelineRequest.Builder Request message for [PipelineService.DeleteTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.DeleteTrainingPipeline].DeleteTrialRequest Request message for [VizierService.DeleteTrial][google.cloud.aiplatform.v1beta1.VizierService.DeleteTrial].DeleteTrialRequest.Builder Request message for [VizierService.DeleteTrial][google.cloud.aiplatform.v1beta1.VizierService.DeleteTrial].DeployedIndex A deployment of an Index.DeployedIndex.Builder A deployment of an Index.DeployedIndexAuthConfig Used to set up the auth on the DeployedIndex's private endpoint.DeployedIndexAuthConfig.AuthProvider Configuration for an authentication provider, including support for [JSON Web Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).DeployedIndexAuthConfig.AuthProvider.Builder Configuration for an authentication provider, including support for [JSON Web Token (JWT)](https://tools.ietf.org/html/draft-ietf-oauth-json-web-token-32).DeployedIndexAuthConfig.Builder Used to set up the auth on the DeployedIndex's private endpoint.DeployedIndexRef Points to a DeployedIndex.DeployedIndexRef.Builder Points to a DeployedIndex.DeployedIndexRefProto DeployedModel A deployment of a Model.DeployedModel.Builder A deployment of a Model.DeployedModelNameProto DeployedModelRef Points to a DeployedModel.DeployedModelRef.Builder Points to a DeployedModel.DeployIndexOperationMetadata Runtime operation information for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeployIndexOperationMetadata.Builder Runtime operation information for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeployIndexRequest Request message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeployIndexRequest.Builder Request message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeployIndexResponse Response message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeployIndexResponse.Builder Response message for [IndexEndpointService.DeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.DeployIndex].DeploymentResourcePool A description of resources that can be shared by multiple DeployedModels, whose underlying specification consists of a DedicatedResources.DeploymentResourcePool.Builder A description of resources that can be shared by multiple DeployedModels, whose underlying specification consists of a DedicatedResources.DeploymentResourcePoolName DeploymentResourcePoolName.Builder Builder for projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}.DeploymentResourcePoolProto DeploymentResourcePoolServiceClient Service Description: A service that manages the DeploymentResourcePool resource.DeploymentResourcePoolServiceClient.ListDeploymentResourcePoolsFixedSizeCollection DeploymentResourcePoolServiceClient.ListDeploymentResourcePoolsPage DeploymentResourcePoolServiceClient.ListDeploymentResourcePoolsPagedResponse DeploymentResourcePoolServiceClient.ListLocationsFixedSizeCollection DeploymentResourcePoolServiceClient.ListLocationsPage DeploymentResourcePoolServiceClient.ListLocationsPagedResponse DeploymentResourcePoolServiceClient.QueryDeployedModelsFixedSizeCollection DeploymentResourcePoolServiceClient.QueryDeployedModelsPage DeploymentResourcePoolServiceClient.QueryDeployedModelsPagedResponse DeploymentResourcePoolServiceGrpc A service that manages the DeploymentResourcePool resource.DeploymentResourcePoolServiceGrpc.DeploymentResourcePoolServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service DeploymentResourcePoolService.DeploymentResourcePoolServiceGrpc.DeploymentResourcePoolServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service DeploymentResourcePoolService.DeploymentResourcePoolServiceGrpc.DeploymentResourcePoolServiceImplBase Base class for the server implementation of the service DeploymentResourcePoolService.DeploymentResourcePoolServiceGrpc.DeploymentResourcePoolServiceStub A stub to allow clients to do asynchronous rpc calls to service DeploymentResourcePoolService.DeploymentResourcePoolServiceProto DeploymentResourcePoolServiceSettings Settings class to configure an instance ofDeploymentResourcePoolServiceClient
.DeploymentResourcePoolServiceSettings.Builder Builder for DeploymentResourcePoolServiceSettings.DeployModelOperationMetadata Runtime operation information for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DeployModelOperationMetadata.Builder Runtime operation information for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DeployModelRequest Request message for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DeployModelRequest.Builder Request message for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DeployModelResponse Response message for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DeployModelResponse.Builder Response message for [EndpointService.DeployModel][google.cloud.aiplatform.v1beta1.EndpointService.DeployModel].DestinationFeatureSetting Protobuf typegoogle.cloud.aiplatform.v1beta1.DestinationFeatureSetting
DestinationFeatureSetting.Builder Protobuf typegoogle.cloud.aiplatform.v1beta1.DestinationFeatureSetting
DiskSpec Represents the spec of disk options.DiskSpec.Builder Represents the spec of disk options.DoubleArray A list of double values.DoubleArray.Builder A list of double values.EncryptionSpec Represents a customer-managed encryption key spec that can be applied to a top-level resource.EncryptionSpec.Builder Represents a customer-managed encryption key spec that can be applied to a top-level resource.EncryptionSpecProto Endpoint Models are deployed into it, and afterwards Endpoint is called to obtain predictions and explanations.Endpoint.Builder Models are deployed into it, and afterwards Endpoint is called to obtain predictions and explanations.EndpointName EndpointName.Builder Builder for projects/{project}/locations/{location}/endpoints/{endpoint}.EndpointName.ProjectLocationPublisherModelBuilder Builder for projects/{project}/locations/{location}/publishers/{publisher}/models/{model}.EndpointProto EndpointServiceClient Service Description: A service for managing Vertex AI's Endpoints.EndpointServiceClient.ListEndpointsFixedSizeCollection EndpointServiceClient.ListEndpointsPage EndpointServiceClient.ListEndpointsPagedResponse EndpointServiceClient.ListLocationsFixedSizeCollection EndpointServiceClient.ListLocationsPage EndpointServiceClient.ListLocationsPagedResponse EndpointServiceGrpc A service for managing Vertex AI's Endpoints.EndpointServiceGrpc.EndpointServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service EndpointService.EndpointServiceGrpc.EndpointServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service EndpointService.EndpointServiceGrpc.EndpointServiceImplBase Base class for the server implementation of the service EndpointService.EndpointServiceGrpc.EndpointServiceStub A stub to allow clients to do asynchronous rpc calls to service EndpointService.EndpointServiceProto EndpointServiceSettings Settings class to configure an instance ofEndpointServiceClient
.EndpointServiceSettings.Builder Builder for EndpointServiceSettings.EntityIdSelector Selector for entityId.EntityIdSelector.Builder Selector for entityId.EntityType An entity type is a type of object in a system that needs to be modeled and have stored information about.EntityType.Builder An entity type is a type of object in a system that needs to be modeled and have stored information about.EntityTypeName EntityTypeName.Builder Builder for projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}.EntityTypeProto EnvVar Represents an environment variable present in a Container or Python Module.EnvVar.Builder Represents an environment variable present in a Container or Python Module.EnvVarProto ErrorAnalysisAnnotation Model error analysis for each annotation.ErrorAnalysisAnnotation.AttributedItem Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.ErrorAnalysisAnnotation.AttributedItem.Builder Attributed items for a given annotation, typically representing neighbors from the training sets constrained by the query type.ErrorAnalysisAnnotation.Builder Model error analysis for each annotation.EvaluatedAnnotation True positive, false positive, or false negative.EvaluatedAnnotation.Builder True positive, false positive, or false negative.EvaluatedAnnotationExplanation Explanation result of the prediction produced by the Model.EvaluatedAnnotationExplanation.Builder Explanation result of the prediction produced by the Model.EvaluatedAnnotationProto Event An edge describing the relationship between an Artifact and an Execution in a lineage graph.Event.Builder An edge describing the relationship between an Artifact and an Execution in a lineage graph.EventProto Examples Example-based explainability that returns the nearest neighbors from the provided dataset.Examples.Builder Example-based explainability that returns the nearest neighbors from the provided dataset.Examples.ExampleGcsSource The Cloud Storage input instances.Examples.ExampleGcsSource.Builder The Cloud Storage input instances.ExamplesOverride Overrides for example-based explanations.ExamplesOverride.Builder Overrides for example-based explanations.ExamplesRestrictionsNamespace Restrictions namespace for example-based explanations overrides.ExamplesRestrictionsNamespace.Builder Restrictions namespace for example-based explanations overrides.Execution Instance of a general execution.Execution.Builder Instance of a general execution.ExecutionName ExecutionName.Builder Builder for projects/{project}/locations/{location}/metadataStores/{metadata_store}/executions/{execution}.ExecutionProto ExplainRequest Request message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].ExplainRequest.Builder Request message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].ExplainResponse Response message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].ExplainResponse.Builder Response message for [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain].Explanation Explanation of a prediction (provided in [PredictResponse.predictions][google.cloud.aiplatform.v1beta1.PredictResponse.predictions]) produced by the Model on a given [instance][google.cloud.aiplatform.v1beta1.ExplainRequest.instances].Explanation.Builder Explanation of a prediction (provided in [PredictResponse.predictions][google.cloud.aiplatform.v1beta1.PredictResponse.predictions]) produced by the Model on a given [instance][google.cloud.aiplatform.v1beta1.ExplainRequest.instances].ExplanationMetadata Metadata describing the Model's input and output for explanation.ExplanationMetadata.Builder Metadata describing the Model's input and output for explanation.ExplanationMetadata.InputMetadata Metadata of the input of a feature.ExplanationMetadata.InputMetadata.Builder Metadata of the input of a feature.ExplanationMetadata.InputMetadata.FeatureValueDomain Domain details of the input feature value.ExplanationMetadata.InputMetadata.FeatureValueDomain.Builder Domain details of the input feature value.ExplanationMetadata.InputMetadata.Visualization Visualization configurations for image explanation.ExplanationMetadata.InputMetadata.Visualization.Builder Visualization configurations for image explanation.ExplanationMetadata.OutputMetadata Metadata of the prediction output to be explained.ExplanationMetadata.OutputMetadata.Builder Metadata of the prediction output to be explained.ExplanationMetadataOverride The [ExplanationMetadata][google.cloud.aiplatform.v1beta1.ExplanationMetadata] entries that can be overridden at [online explanation][google.cloud.aiplatform.v1beta1.PredictionService.Explain] time.ExplanationMetadataOverride.Builder The [ExplanationMetadata][google.cloud.aiplatform.v1beta1.ExplanationMetadata] entries that can be overridden at [online explanation][google.cloud.aiplatform.v1beta1.PredictionService.Explain] time.ExplanationMetadataOverride.InputMetadataOverride The [input metadata][google.cloud.aiplatform.v1beta1.ExplanationMetadata.InputMetadata] entries to be overridden.ExplanationMetadataOverride.InputMetadataOverride.Builder The [input metadata][google.cloud.aiplatform.v1beta1.ExplanationMetadata.InputMetadata] entries to be overridden.ExplanationMetadataProto ExplanationParameters Parameters to configure explaining for Model's predictions.ExplanationParameters.Builder Parameters to configure explaining for Model's predictions.ExplanationProto ExplanationSpec Specification of Model explanation.ExplanationSpec.Builder Specification of Model explanation.ExplanationSpecOverride The [ExplanationSpec][google.cloud.aiplatform.v1beta1.ExplanationSpec] entries that can be overridden at [online explanation][google.cloud.aiplatform.v1beta1.PredictionService.Explain] time.ExplanationSpecOverride.Builder The [ExplanationSpec][google.cloud.aiplatform.v1beta1.ExplanationSpec] entries that can be overridden at [online explanation][google.cloud.aiplatform.v1beta1.PredictionService.Explain] time.ExportDataConfig Describes what part of the Dataset is to be exported, the destination of the export and how to export.ExportDataConfig.Builder Describes what part of the Dataset is to be exported, the destination of the export and how to export.ExportDataOperationMetadata Runtime operation information for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportDataOperationMetadata.Builder Runtime operation information for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportDataRequest Request message for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportDataRequest.Builder Request message for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportDataResponse Response message for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportDataResponse.Builder Response message for [DatasetService.ExportData][google.cloud.aiplatform.v1beta1.DatasetService.ExportData].ExportFeatureValuesOperationMetadata Details of operations that exports Features values.ExportFeatureValuesOperationMetadata.Builder Details of operations that exports Features values.ExportFeatureValuesRequest Request message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ExportFeatureValues].ExportFeatureValuesRequest.Builder Request message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ExportFeatureValues].ExportFeatureValuesRequest.FullExport Describes exporting all historical Feature values of all entities of the EntityType between [start_time, end_time].ExportFeatureValuesRequest.FullExport.Builder Describes exporting all historical Feature values of all entities of the EntityType between [start_time, end_time].ExportFeatureValuesRequest.SnapshotExport Describes exporting the latest Feature values of all entities of the EntityType between [start_time, snapshot_time].ExportFeatureValuesRequest.SnapshotExport.Builder Describes exporting the latest Feature values of all entities of the EntityType between [start_time, snapshot_time].ExportFeatureValuesResponse Response message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ExportFeatureValues].ExportFeatureValuesResponse.Builder Response message for [FeaturestoreService.ExportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ExportFeatureValues].ExportFractionSplit Assigns the input data to training, validation, and test sets as per the given fractions.ExportFractionSplit.Builder Assigns the input data to training, validation, and test sets as per the given fractions.ExportModelOperationMetadata Details of [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel] operation.ExportModelOperationMetadata.Builder Details of [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel] operation.ExportModelOperationMetadata.OutputInfo Further describes the output of the ExportModel.ExportModelOperationMetadata.OutputInfo.Builder Further describes the output of the ExportModel.ExportModelRequest Request message for [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel].ExportModelRequest.Builder Request message for [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel].ExportModelRequest.OutputConfig Output configuration for the Model export.ExportModelRequest.OutputConfig.Builder Output configuration for the Model export.ExportModelResponse Response message of [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel] operation.ExportModelResponse.Builder Response message of [ModelService.ExportModel][google.cloud.aiplatform.v1beta1.ModelService.ExportModel] operation.ExportTensorboardTimeSeriesDataRequest Request message for [TensorboardService.ExportTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ExportTensorboardTimeSeriesData].ExportTensorboardTimeSeriesDataRequest.Builder Request message for [TensorboardService.ExportTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ExportTensorboardTimeSeriesData].ExportTensorboardTimeSeriesDataResponse Response message for [TensorboardService.ExportTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ExportTensorboardTimeSeriesData].ExportTensorboardTimeSeriesDataResponse.Builder Response message for [TensorboardService.ExportTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ExportTensorboardTimeSeriesData].Feature Feature Metadata information that describes an attribute of an entity type.Feature.Builder Feature Metadata information that describes an attribute of an entity type.Feature.MonitoringStatsAnomaly A list of historical [SnapshotAnalysis][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.SnapshotAnalysis] or [ImportFeaturesAnalysis][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.ImportFeaturesAnalysis] stats requested by user, sorted by [FeatureStatsAnomaly.start_time][google.cloud.aiplatform.v1beta1.FeatureStatsAnomaly.start_time] descending.Feature.MonitoringStatsAnomaly.Builder A list of historical [SnapshotAnalysis][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.SnapshotAnalysis] or [ImportFeaturesAnalysis][google.cloud.aiplatform.v1beta1.FeaturestoreMonitoringConfig.ImportFeaturesAnalysis] stats requested by user, sorted by [FeatureStatsAnomaly.start_time][google.cloud.aiplatform.v1beta1.FeatureStatsAnomaly.start_time] descending.FeatureMonitoringStatsProto FeatureName FeatureName.Builder Builder for projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}.FeatureNoiseSigma Noise sigma by features.FeatureNoiseSigma.Builder Noise sigma by features.FeatureNoiseSigma.NoiseSigmaForFeature Noise sigma for a single feature.FeatureNoiseSigma.NoiseSigmaForFeature.Builder Noise sigma for a single feature.FeatureProto FeatureSelector Selector for Features of an EntityType.FeatureSelector.Builder Selector for Features of an EntityType.FeatureSelectorProto FeatureStatsAnomaly Stats and Anomaly generated at specific timestamp for specific Feature.FeatureStatsAnomaly.Builder Stats and Anomaly generated at specific timestamp for specific Feature.Featurestore Vertex AI Feature Store provides a centralized repository for organizing, storing, and serving ML features.Featurestore.Builder Vertex AI Feature Store provides a centralized repository for organizing, storing, and serving ML features.Featurestore.OnlineServingConfig OnlineServingConfig specifies the details for provisioning online serving resources.Featurestore.OnlineServingConfig.Builder OnlineServingConfig specifies the details for provisioning online serving resources.Featurestore.OnlineServingConfig.Scaling Online serving scaling configuration.Featurestore.OnlineServingConfig.Scaling.Builder Online serving scaling configuration.FeaturestoreMonitoringConfig Configuration of how features in Featurestore are monitored.FeaturestoreMonitoringConfig.Builder Configuration of how features in Featurestore are monitored.FeaturestoreMonitoringConfig.ImportFeaturesAnalysis Configuration of the Featurestore's ImportFeature Analysis Based Monitoring.FeaturestoreMonitoringConfig.ImportFeaturesAnalysis.Builder Configuration of the Featurestore's ImportFeature Analysis Based Monitoring.FeaturestoreMonitoringConfig.SnapshotAnalysis Configuration of the Featurestore's Snapshot Analysis Based Monitoring.FeaturestoreMonitoringConfig.SnapshotAnalysis.Builder Configuration of the Featurestore's Snapshot Analysis Based Monitoring.FeaturestoreMonitoringConfig.ThresholdConfig The config for Featurestore Monitoring threshold.FeaturestoreMonitoringConfig.ThresholdConfig.Builder The config for Featurestore Monitoring threshold.FeaturestoreMonitoringProto FeaturestoreName FeaturestoreName.Builder Builder for projects/{project}/locations/{location}/featurestores/{featurestore}.FeaturestoreOnlineServiceProto FeaturestoreOnlineServingServiceClient Service Description: A service for serving online feature values.FeaturestoreOnlineServingServiceClient.ListLocationsFixedSizeCollection FeaturestoreOnlineServingServiceClient.ListLocationsPage FeaturestoreOnlineServingServiceClient.ListLocationsPagedResponse FeaturestoreOnlineServingServiceGrpc A service for serving online feature values.FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceImplBase Base class for the server implementation of the service FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceGrpc.FeaturestoreOnlineServingServiceStub A stub to allow clients to do asynchronous rpc calls to service FeaturestoreOnlineServingService.FeaturestoreOnlineServingServiceSettings Settings class to configure an instance ofFeaturestoreOnlineServingServiceClient
.FeaturestoreOnlineServingServiceSettings.Builder Builder for FeaturestoreOnlineServingServiceSettings.FeaturestoreProto FeaturestoreServiceClient Service Description: The service that handles CRUD and List for resources for Featurestore.FeaturestoreServiceClient.ListEntityTypesFixedSizeCollection FeaturestoreServiceClient.ListEntityTypesPage FeaturestoreServiceClient.ListEntityTypesPagedResponse FeaturestoreServiceClient.ListFeaturesFixedSizeCollection FeaturestoreServiceClient.ListFeaturesPage FeaturestoreServiceClient.ListFeaturesPagedResponse FeaturestoreServiceClient.ListFeaturestoresFixedSizeCollection FeaturestoreServiceClient.ListFeaturestoresPage FeaturestoreServiceClient.ListFeaturestoresPagedResponse FeaturestoreServiceClient.ListLocationsFixedSizeCollection FeaturestoreServiceClient.ListLocationsPage FeaturestoreServiceClient.ListLocationsPagedResponse FeaturestoreServiceClient.SearchFeaturesFixedSizeCollection FeaturestoreServiceClient.SearchFeaturesPage FeaturestoreServiceClient.SearchFeaturesPagedResponse FeaturestoreServiceGrpc The service that handles CRUD and List for resources for Featurestore.FeaturestoreServiceGrpc.FeaturestoreServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service FeaturestoreService.FeaturestoreServiceGrpc.FeaturestoreServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service FeaturestoreService.FeaturestoreServiceGrpc.FeaturestoreServiceImplBase Base class for the server implementation of the service FeaturestoreService.FeaturestoreServiceGrpc.FeaturestoreServiceStub A stub to allow clients to do asynchronous rpc calls to service FeaturestoreService.FeaturestoreServiceProto FeaturestoreServiceSettings Settings class to configure an instance ofFeaturestoreServiceClient
.FeaturestoreServiceSettings.Builder Builder for FeaturestoreServiceSettings.FeatureValue Value for a feature.FeatureValue.Builder Value for a feature.FeatureValue.Metadata Metadata of feature value.FeatureValue.Metadata.Builder Metadata of feature value.FeatureValueDestination A destination location for Feature values and format.FeatureValueDestination.Builder A destination location for Feature values and format.FeatureValueList Container for list of values.FeatureValueList.Builder Container for list of values.FilterSplit Assigns input data to training, validation, and test sets based on the given filters, data pieces not matched by any filter are ignored.FilterSplit.Builder Assigns input data to training, validation, and test sets based on the given filters, data pieces not matched by any filter are ignored.FindNeighborsRequest The request message for [MatchService.FindNeighbors][google.cloud.aiplatform.v1beta1.MatchService.FindNeighbors].FindNeighborsRequest.Builder The request message for [MatchService.FindNeighbors][google.cloud.aiplatform.v1beta1.MatchService.FindNeighbors].FindNeighborsRequest.Query A query to find a number of the nearest neighbors (most similar vectors) of a vector.FindNeighborsRequest.Query.Builder A query to find a number of the nearest neighbors (most similar vectors) of a vector.FindNeighborsResponse The response message for [MatchService.FindNeighbors][google.cloud.aiplatform.v1beta1.MatchService.FindNeighbors].FindNeighborsResponse.Builder The response message for [MatchService.FindNeighbors][google.cloud.aiplatform.v1beta1.MatchService.FindNeighbors].FindNeighborsResponse.NearestNeighbors Nearest neighbors for one query.FindNeighborsResponse.NearestNeighbors.Builder Nearest neighbors for one query.FindNeighborsResponse.Neighbor A neighbor of the query vector.FindNeighborsResponse.Neighbor.Builder A neighbor of the query vector.FractionSplit Assigns the input data to training, validation, and test sets as per the given fractions.FractionSplit.Builder Assigns the input data to training, validation, and test sets as per the given fractions.GcsDestination The Google Cloud Storage location where the output is to be written to.GcsDestination.Builder The Google Cloud Storage location where the output is to be written to.GcsSource The Google Cloud Storage location for the input content.GcsSource.Builder The Google Cloud Storage location for the input content.GenericOperationMetadata Generic Metadata shared by all operations.GenericOperationMetadata.Builder Generic Metadata shared by all operations.GetAnnotationSpecRequest Request message for [DatasetService.GetAnnotationSpec][google.cloud.aiplatform.v1beta1.DatasetService.GetAnnotationSpec].GetAnnotationSpecRequest.Builder Request message for [DatasetService.GetAnnotationSpec][google.cloud.aiplatform.v1beta1.DatasetService.GetAnnotationSpec].GetArtifactRequest Request message for [MetadataService.GetArtifact][google.cloud.aiplatform.v1beta1.MetadataService.GetArtifact].GetArtifactRequest.Builder Request message for [MetadataService.GetArtifact][google.cloud.aiplatform.v1beta1.MetadataService.GetArtifact].GetBatchPredictionJobRequest Request message for [JobService.GetBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.GetBatchPredictionJob].GetBatchPredictionJobRequest.Builder Request message for [JobService.GetBatchPredictionJob][google.cloud.aiplatform.v1beta1.JobService.GetBatchPredictionJob].GetContextRequest Request message for [MetadataService.GetContext][google.cloud.aiplatform.v1beta1.MetadataService.GetContext].GetContextRequest.Builder Request message for [MetadataService.GetContext][google.cloud.aiplatform.v1beta1.MetadataService.GetContext].GetCustomJobRequest Request message for [JobService.GetCustomJob][google.cloud.aiplatform.v1beta1.JobService.GetCustomJob].GetCustomJobRequest.Builder Request message for [JobService.GetCustomJob][google.cloud.aiplatform.v1beta1.JobService.GetCustomJob].GetDataLabelingJobRequest Request message for [JobService.GetDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.GetDataLabelingJob].GetDataLabelingJobRequest.Builder Request message for [JobService.GetDataLabelingJob][google.cloud.aiplatform.v1beta1.JobService.GetDataLabelingJob].GetDatasetRequest Request message for [DatasetService.GetDataset][google.cloud.aiplatform.v1beta1.DatasetService.GetDataset].GetDatasetRequest.Builder Request message for [DatasetService.GetDataset][google.cloud.aiplatform.v1beta1.DatasetService.GetDataset].GetDeploymentResourcePoolRequest Request message for GetDeploymentResourcePool method.GetDeploymentResourcePoolRequest.Builder Request message for GetDeploymentResourcePool method.GetEndpointRequest Request message for [EndpointService.GetEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.GetEndpoint]GetEndpointRequest.Builder Request message for [EndpointService.GetEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.GetEndpoint]GetEntityTypeRequest Request message for [FeaturestoreService.GetEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetEntityType].GetEntityTypeRequest.Builder Request message for [FeaturestoreService.GetEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetEntityType].GetExecutionRequest Request message for [MetadataService.GetExecution][google.cloud.aiplatform.v1beta1.MetadataService.GetExecution].GetExecutionRequest.Builder Request message for [MetadataService.GetExecution][google.cloud.aiplatform.v1beta1.MetadataService.GetExecution].GetFeatureRequest Request message for [FeaturestoreService.GetFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetFeature].GetFeatureRequest.Builder Request message for [FeaturestoreService.GetFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetFeature].GetFeaturestoreRequest Request message for [FeaturestoreService.GetFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetFeaturestore].GetFeaturestoreRequest.Builder Request message for [FeaturestoreService.GetFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.GetFeaturestore].GetHyperparameterTuningJobRequest Request message for [JobService.GetHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.GetHyperparameterTuningJob].GetHyperparameterTuningJobRequest.Builder Request message for [JobService.GetHyperparameterTuningJob][google.cloud.aiplatform.v1beta1.JobService.GetHyperparameterTuningJob].GetIndexEndpointRequest Request message for [IndexEndpointService.GetIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.GetIndexEndpoint]GetIndexEndpointRequest.Builder Request message for [IndexEndpointService.GetIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.GetIndexEndpoint]GetIndexRequest Request message for [IndexService.GetIndex][google.cloud.aiplatform.v1beta1.IndexService.GetIndex]GetIndexRequest.Builder Request message for [IndexService.GetIndex][google.cloud.aiplatform.v1beta1.IndexService.GetIndex]GetMetadataSchemaRequest Request message for [MetadataService.GetMetadataSchema][google.cloud.aiplatform.v1beta1.MetadataService.GetMetadataSchema].GetMetadataSchemaRequest.Builder Request message for [MetadataService.GetMetadataSchema][google.cloud.aiplatform.v1beta1.MetadataService.GetMetadataSchema].GetMetadataStoreRequest Request message for [MetadataService.GetMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.GetMetadataStore].GetMetadataStoreRequest.Builder Request message for [MetadataService.GetMetadataStore][google.cloud.aiplatform.v1beta1.MetadataService.GetMetadataStore].GetModelDeploymentMonitoringJobRequest Request message for [JobService.GetModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.GetModelDeploymentMonitoringJob].GetModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.GetModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.GetModelDeploymentMonitoringJob].GetModelEvaluationRequest Request message for [ModelService.GetModelEvaluation][google.cloud.aiplatform.v1beta1.ModelService.GetModelEvaluation].GetModelEvaluationRequest.Builder Request message for [ModelService.GetModelEvaluation][google.cloud.aiplatform.v1beta1.ModelService.GetModelEvaluation].GetModelEvaluationSliceRequest Request message for [ModelService.GetModelEvaluationSlice][google.cloud.aiplatform.v1beta1.ModelService.GetModelEvaluationSlice].GetModelEvaluationSliceRequest.Builder Request message for [ModelService.GetModelEvaluationSlice][google.cloud.aiplatform.v1beta1.ModelService.GetModelEvaluationSlice].GetModelRequest Request message for [ModelService.GetModel][google.cloud.aiplatform.v1beta1.ModelService.GetModel].GetModelRequest.Builder Request message for [ModelService.GetModel][google.cloud.aiplatform.v1beta1.ModelService.GetModel].GetNasJobRequest Request message for [JobService.GetNasJob][google.cloud.aiplatform.v1beta1.JobService.GetNasJob].GetNasJobRequest.Builder Request message for [JobService.GetNasJob][google.cloud.aiplatform.v1beta1.JobService.GetNasJob].GetNasTrialDetailRequest Request message for [JobService.GetNasTrialDetail][google.cloud.aiplatform.v1beta1.JobService.GetNasTrialDetail].GetNasTrialDetailRequest.Builder Request message for [JobService.GetNasTrialDetail][google.cloud.aiplatform.v1beta1.JobService.GetNasTrialDetail].GetPersistentResourceRequest Request message for [PersistentResourceService.GetPersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.GetPersistentResource].GetPersistentResourceRequest.Builder Request message for [PersistentResourceService.GetPersistentResource][google.cloud.aiplatform.v1beta1.PersistentResourceService.GetPersistentResource].GetPipelineJobRequest Request message for [PipelineService.GetPipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.GetPipelineJob].GetPipelineJobRequest.Builder Request message for [PipelineService.GetPipelineJob][google.cloud.aiplatform.v1beta1.PipelineService.GetPipelineJob].GetPublisherModelRequest Request message for [ModelGardenService.GetPublisherModel][google.cloud.aiplatform.v1beta1.ModelGardenService.GetPublisherModel]GetPublisherModelRequest.Builder Request message for [ModelGardenService.GetPublisherModel][google.cloud.aiplatform.v1beta1.ModelGardenService.GetPublisherModel]GetScheduleRequest Request message for [ScheduleService.GetSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.GetSchedule].GetScheduleRequest.Builder Request message for [ScheduleService.GetSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.GetSchedule].GetSpecialistPoolRequest Request message for [SpecialistPoolService.GetSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.GetSpecialistPool].GetSpecialistPoolRequest.Builder Request message for [SpecialistPoolService.GetSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.GetSpecialistPool].GetStudyRequest Request message for [VizierService.GetStudy][google.cloud.aiplatform.v1beta1.VizierService.GetStudy].GetStudyRequest.Builder Request message for [VizierService.GetStudy][google.cloud.aiplatform.v1beta1.VizierService.GetStudy].GetTensorboardExperimentRequest Request message for [TensorboardService.GetTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardExperiment].GetTensorboardExperimentRequest.Builder Request message for [TensorboardService.GetTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardExperiment].GetTensorboardRequest Request message for [TensorboardService.GetTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboard].GetTensorboardRequest.Builder Request message for [TensorboardService.GetTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboard].GetTensorboardRunRequest Request message for [TensorboardService.GetTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardRun].GetTensorboardRunRequest.Builder Request message for [TensorboardService.GetTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardRun].GetTensorboardTimeSeriesRequest Request message for [TensorboardService.GetTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardTimeSeries].GetTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.GetTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.GetTensorboardTimeSeries].GetTrainingPipelineRequest Request message for [PipelineService.GetTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.GetTrainingPipeline].GetTrainingPipelineRequest.Builder Request message for [PipelineService.GetTrainingPipeline][google.cloud.aiplatform.v1beta1.PipelineService.GetTrainingPipeline].GetTrialRequest Request message for [VizierService.GetTrial][google.cloud.aiplatform.v1beta1.VizierService.GetTrial].GetTrialRequest.Builder Request message for [VizierService.GetTrial][google.cloud.aiplatform.v1beta1.VizierService.GetTrial].HyperparameterTuningJob Represents a HyperparameterTuningJob.HyperparameterTuningJob.Builder Represents a HyperparameterTuningJob.HyperparameterTuningJobName HyperparameterTuningJobName.Builder Builder for projects/{project}/locations/{location}/hyperparameterTuningJobs/{hyperparameter_tuning_job}.HyperparameterTuningJobProto IdMatcher Matcher for Features of an EntityType by Feature ID.IdMatcher.Builder Matcher for Features of an EntityType by Feature ID.ImportDataConfig Describes the location from where we import data into a Dataset, together with the labels that will be applied to the DataItems and the Annotations.ImportDataConfig.Builder Describes the location from where we import data into a Dataset, together with the labels that will be applied to the DataItems and the Annotations.ImportDataOperationMetadata Runtime operation information for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportDataOperationMetadata.Builder Runtime operation information for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportDataRequest Request message for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportDataRequest.Builder Request message for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportDataResponse Response message for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportDataResponse.Builder Response message for [DatasetService.ImportData][google.cloud.aiplatform.v1beta1.DatasetService.ImportData].ImportFeatureValuesOperationMetadata Details of operations that perform import Feature values.ImportFeatureValuesOperationMetadata.Builder Details of operations that perform import Feature values.ImportFeatureValuesRequest Request message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ImportFeatureValues].ImportFeatureValuesRequest.Builder Request message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ImportFeatureValues].ImportFeatureValuesRequest.FeatureSpec Defines the Feature value(s) to import.ImportFeatureValuesRequest.FeatureSpec.Builder Defines the Feature value(s) to import.ImportFeatureValuesResponse Response message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ImportFeatureValues].ImportFeatureValuesResponse.Builder Response message for [FeaturestoreService.ImportFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreService.ImportFeatureValues].ImportModelEvaluationRequest Request message for [ModelService.ImportModelEvaluation][google.cloud.aiplatform.v1beta1.ModelService.ImportModelEvaluation]ImportModelEvaluationRequest.Builder Request message for [ModelService.ImportModelEvaluation][google.cloud.aiplatform.v1beta1.ModelService.ImportModelEvaluation]Index A representation of a collection of database items organized in a way that allows for approximate nearest neighbor (a.k.a ANN) algorithms search.Index.Builder A representation of a collection of database items organized in a way that allows for approximate nearest neighbor (a.k.a ANN) algorithms search.IndexDatapoint A datapoint of Index.IndexDatapoint.Builder A datapoint of Index.IndexDatapoint.CrowdingTag Crowding tag is a constraint on a neighbor list produced by nearest neighbor search requiring that no more than some value k' of the k neighbors returned have the same value of crowding_attribute.IndexDatapoint.CrowdingTag.Builder Crowding tag is a constraint on a neighbor list produced by nearest neighbor search requiring that no more than some value k' of the k neighbors returned have the same value of crowding_attribute.IndexDatapoint.Restriction Restriction of a datapoint which describe its attributes(tokens) from each of several attribute categories(namespaces).IndexDatapoint.Restriction.Builder Restriction of a datapoint which describe its attributes(tokens) from each of several attribute categories(namespaces).IndexEndpoint Indexes are deployed into it.IndexEndpoint.Builder Indexes are deployed into it.IndexEndpointName IndexEndpointName.Builder Builder for projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}.IndexEndpointProto IndexEndpointServiceClient Service Description: A service for managing Vertex AI's IndexEndpoints.IndexEndpointServiceClient.ListIndexEndpointsFixedSizeCollection IndexEndpointServiceClient.ListIndexEndpointsPage IndexEndpointServiceClient.ListIndexEndpointsPagedResponse IndexEndpointServiceClient.ListLocationsFixedSizeCollection IndexEndpointServiceClient.ListLocationsPage IndexEndpointServiceClient.ListLocationsPagedResponse IndexEndpointServiceGrpc A service for managing Vertex AI's IndexEndpoints.IndexEndpointServiceGrpc.IndexEndpointServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service IndexEndpointService.IndexEndpointServiceGrpc.IndexEndpointServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service IndexEndpointService.IndexEndpointServiceGrpc.IndexEndpointServiceImplBase Base class for the server implementation of the service IndexEndpointService.IndexEndpointServiceGrpc.IndexEndpointServiceStub A stub to allow clients to do asynchronous rpc calls to service IndexEndpointService.IndexEndpointServiceProto IndexEndpointServiceSettings Settings class to configure an instance ofIndexEndpointServiceClient
.IndexEndpointServiceSettings.Builder Builder for IndexEndpointServiceSettings.IndexName IndexName.Builder Builder for projects/{project}/locations/{location}/indexes/{index}.IndexPrivateEndpoints IndexPrivateEndpoints proto is used to provide paths for users to send requests via private endpoints (e.g.IndexPrivateEndpoints.Builder IndexPrivateEndpoints proto is used to provide paths for users to send requests via private endpoints (e.g.IndexProto IndexServiceClient Service Description: A service for creating and managing Vertex AI's Index resources.IndexServiceClient.ListIndexesFixedSizeCollection IndexServiceClient.ListIndexesPage IndexServiceClient.ListIndexesPagedResponse IndexServiceClient.ListLocationsFixedSizeCollection IndexServiceClient.ListLocationsPage IndexServiceClient.ListLocationsPagedResponse IndexServiceGrpc A service for creating and managing Vertex AI's Index resources.IndexServiceGrpc.IndexServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service IndexService.IndexServiceGrpc.IndexServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service IndexService.IndexServiceGrpc.IndexServiceImplBase Base class for the server implementation of the service IndexService.IndexServiceGrpc.IndexServiceStub A stub to allow clients to do asynchronous rpc calls to service IndexService.IndexServiceProto IndexServiceSettings Settings class to configure an instance ofIndexServiceClient
.IndexServiceSettings.Builder Builder for IndexServiceSettings.IndexStats Stats of the Index.IndexStats.Builder Stats of the Index.InputDataConfig Specifies Vertex AI owned input data to be used for training, and possibly evaluating, the Model.InputDataConfig.Builder Specifies Vertex AI owned input data to be used for training, and possibly evaluating, the Model.Int64Array A list of int64 values.Int64Array.Builder A list of int64 values.IntegratedGradientsAttribution An attribution method that computes the Aumann-Shapley value taking advantage of the model's fully differentiable structure.IntegratedGradientsAttribution.Builder An attribution method that computes the Aumann-Shapley value taking advantage of the model's fully differentiable structure.IoProto JobServiceClient Service Description: A service for creating and managing Vertex AI's jobs.JobServiceClient.ListBatchPredictionJobsFixedSizeCollection JobServiceClient.ListBatchPredictionJobsPage JobServiceClient.ListBatchPredictionJobsPagedResponse JobServiceClient.ListCustomJobsFixedSizeCollection JobServiceClient.ListCustomJobsPage JobServiceClient.ListCustomJobsPagedResponse JobServiceClient.ListDataLabelingJobsFixedSizeCollection JobServiceClient.ListDataLabelingJobsPage JobServiceClient.ListDataLabelingJobsPagedResponse JobServiceClient.ListHyperparameterTuningJobsFixedSizeCollection JobServiceClient.ListHyperparameterTuningJobsPage JobServiceClient.ListHyperparameterTuningJobsPagedResponse JobServiceClient.ListLocationsFixedSizeCollection JobServiceClient.ListLocationsPage JobServiceClient.ListLocationsPagedResponse JobServiceClient.ListModelDeploymentMonitoringJobsFixedSizeCollection JobServiceClient.ListModelDeploymentMonitoringJobsPage JobServiceClient.ListModelDeploymentMonitoringJobsPagedResponse JobServiceClient.ListNasJobsFixedSizeCollection JobServiceClient.ListNasJobsPage JobServiceClient.ListNasJobsPagedResponse JobServiceClient.ListNasTrialDetailsFixedSizeCollection JobServiceClient.ListNasTrialDetailsPage JobServiceClient.ListNasTrialDetailsPagedResponse JobServiceClient.SearchModelDeploymentMonitoringStatsAnomaliesFixedSizeCollection JobServiceClient.SearchModelDeploymentMonitoringStatsAnomaliesPage JobServiceClient.SearchModelDeploymentMonitoringStatsAnomaliesPagedResponse JobServiceGrpc A service for creating and managing Vertex AI's jobs.JobServiceGrpc.JobServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service JobService.JobServiceGrpc.JobServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service JobService.JobServiceGrpc.JobServiceImplBase Base class for the server implementation of the service JobService.JobServiceGrpc.JobServiceStub A stub to allow clients to do asynchronous rpc calls to service JobService.JobServiceProto JobServiceSettings Settings class to configure an instance ofJobServiceClient
.JobServiceSettings.Builder Builder for JobServiceSettings.JobStateProto LargeModelReference Contains information about the Large Model.LargeModelReference.Builder Contains information about the Large Model.LineageSubgraph A subgraph of the overall lineage graph.LineageSubgraph.Builder A subgraph of the overall lineage graph.LineageSubgraphProto ListAnnotationsRequest Request message for [DatasetService.ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].ListAnnotationsRequest.Builder Request message for [DatasetService.ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].ListAnnotationsResponse Response message for [DatasetService.ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].ListAnnotationsResponse.Builder Response message for [DatasetService.ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].ListArtifactsRequest Request message for [MetadataService.ListArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.ListArtifacts].ListArtifactsRequest.Builder Request message for [MetadataService.ListArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.ListArtifacts].ListArtifactsResponse Response message for [MetadataService.ListArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.ListArtifacts].ListArtifactsResponse.Builder Response message for [MetadataService.ListArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.ListArtifacts].ListBatchPredictionJobsRequest Request message for [JobService.ListBatchPredictionJobs][google.cloud.aiplatform.v1beta1.JobService.ListBatchPredictionJobs].ListBatchPredictionJobsRequest.Builder Request message for [JobService.ListBatchPredictionJobs][google.cloud.aiplatform.v1beta1.JobService.ListBatchPredictionJobs].ListBatchPredictionJobsResponse Response message for [JobService.ListBatchPredictionJobs][google.cloud.aiplatform.v1beta1.JobService.ListBatchPredictionJobs]ListBatchPredictionJobsResponse.Builder Response message for [JobService.ListBatchPredictionJobs][google.cloud.aiplatform.v1beta1.JobService.ListBatchPredictionJobs]ListContextsRequest Request message for [MetadataService.ListContexts][google.cloud.aiplatform.v1beta1.MetadataService.ListContexts]ListContextsRequest.Builder Request message for [MetadataService.ListContexts][google.cloud.aiplatform.v1beta1.MetadataService.ListContexts]ListContextsResponse Response message for [MetadataService.ListContexts][google.cloud.aiplatform.v1beta1.MetadataService.ListContexts].ListContextsResponse.Builder Response message for [MetadataService.ListContexts][google.cloud.aiplatform.v1beta1.MetadataService.ListContexts].ListCustomJobsRequest Request message for [JobService.ListCustomJobs][google.cloud.aiplatform.v1beta1.JobService.ListCustomJobs].ListCustomJobsRequest.Builder Request message for [JobService.ListCustomJobs][google.cloud.aiplatform.v1beta1.JobService.ListCustomJobs].ListCustomJobsResponse Response message for [JobService.ListCustomJobs][google.cloud.aiplatform.v1beta1.JobService.ListCustomJobs]ListCustomJobsResponse.Builder Response message for [JobService.ListCustomJobs][google.cloud.aiplatform.v1beta1.JobService.ListCustomJobs]ListDataItemsRequest Request message for [DatasetService.ListDataItems][google.cloud.aiplatform.v1beta1.DatasetService.ListDataItems].ListDataItemsRequest.Builder Request message for [DatasetService.ListDataItems][google.cloud.aiplatform.v1beta1.DatasetService.ListDataItems].ListDataItemsResponse Response message for [DatasetService.ListDataItems][google.cloud.aiplatform.v1beta1.DatasetService.ListDataItems].ListDataItemsResponse.Builder Response message for [DatasetService.ListDataItems][google.cloud.aiplatform.v1beta1.DatasetService.ListDataItems].ListDataLabelingJobsRequest Request message for [JobService.ListDataLabelingJobs][google.cloud.aiplatform.v1beta1.JobService.ListDataLabelingJobs].ListDataLabelingJobsRequest.Builder Request message for [JobService.ListDataLabelingJobs][google.cloud.aiplatform.v1beta1.JobService.ListDataLabelingJobs].ListDataLabelingJobsResponse Response message for [JobService.ListDataLabelingJobs][google.cloud.aiplatform.v1beta1.JobService.ListDataLabelingJobs].ListDataLabelingJobsResponse.Builder Response message for [JobService.ListDataLabelingJobs][google.cloud.aiplatform.v1beta1.JobService.ListDataLabelingJobs].ListDatasetsRequest Request message for [DatasetService.ListDatasets][google.cloud.aiplatform.v1beta1.DatasetService.ListDatasets].ListDatasetsRequest.Builder Request message for [DatasetService.ListDatasets][google.cloud.aiplatform.v1beta1.DatasetService.ListDatasets].ListDatasetsResponse Response message for [DatasetService.ListDatasets][google.cloud.aiplatform.v1beta1.DatasetService.ListDatasets].ListDatasetsResponse.Builder Response message for [DatasetService.ListDatasets][google.cloud.aiplatform.v1beta1.DatasetService.ListDatasets].ListDeploymentResourcePoolsRequest Request message for ListDeploymentResourcePools method.ListDeploymentResourcePoolsRequest.Builder Request message for ListDeploymentResourcePools method.ListDeploymentResourcePoolsResponse Response message for ListDeploymentResourcePools method.ListDeploymentResourcePoolsResponse.Builder Response message for ListDeploymentResourcePools method.ListEndpointsRequest Request message for [EndpointService.ListEndpoints][google.cloud.aiplatform.v1beta1.EndpointService.ListEndpoints].ListEndpointsRequest.Builder Request message for [EndpointService.ListEndpoints][google.cloud.aiplatform.v1beta1.EndpointService.ListEndpoints].ListEndpointsResponse Response message for [EndpointService.ListEndpoints][google.cloud.aiplatform.v1beta1.EndpointService.ListEndpoints].ListEndpointsResponse.Builder Response message for [EndpointService.ListEndpoints][google.cloud.aiplatform.v1beta1.EndpointService.ListEndpoints].ListEntityTypesRequest Request message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListEntityTypes].ListEntityTypesRequest.Builder Request message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListEntityTypes].ListEntityTypesResponse Response message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListEntityTypes].ListEntityTypesResponse.Builder Response message for [FeaturestoreService.ListEntityTypes][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListEntityTypes].ListExecutionsRequest Request message for [MetadataService.ListExecutions][google.cloud.aiplatform.v1beta1.MetadataService.ListExecutions].ListExecutionsRequest.Builder Request message for [MetadataService.ListExecutions][google.cloud.aiplatform.v1beta1.MetadataService.ListExecutions].ListExecutionsResponse Response message for [MetadataService.ListExecutions][google.cloud.aiplatform.v1beta1.MetadataService.ListExecutions].ListExecutionsResponse.Builder Response message for [MetadataService.ListExecutions][google.cloud.aiplatform.v1beta1.MetadataService.ListExecutions].ListFeaturesRequest Request message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeatures].ListFeaturesRequest.Builder Request message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeatures].ListFeaturesResponse Response message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeatures].ListFeaturesResponse.Builder Response message for [FeaturestoreService.ListFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeatures].ListFeaturestoresRequest Request message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeaturestores].ListFeaturestoresRequest.Builder Request message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeaturestores].ListFeaturestoresResponse Response message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeaturestores].ListFeaturestoresResponse.Builder Response message for [FeaturestoreService.ListFeaturestores][google.cloud.aiplatform.v1beta1.FeaturestoreService.ListFeaturestores].ListHyperparameterTuningJobsRequest Request message for [JobService.ListHyperparameterTuningJobs][google.cloud.aiplatform.v1beta1.JobService.ListHyperparameterTuningJobs].ListHyperparameterTuningJobsRequest.Builder Request message for [JobService.ListHyperparameterTuningJobs][google.cloud.aiplatform.v1beta1.JobService.ListHyperparameterTuningJobs].ListHyperparameterTuningJobsResponse Response message for [JobService.ListHyperparameterTuningJobs][google.cloud.aiplatform.v1beta1.JobService.ListHyperparameterTuningJobs]ListHyperparameterTuningJobsResponse.Builder Response message for [JobService.ListHyperparameterTuningJobs][google.cloud.aiplatform.v1beta1.JobService.ListHyperparameterTuningJobs]ListIndexEndpointsRequest Request message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1beta1.IndexEndpointService.ListIndexEndpoints].ListIndexEndpointsRequest.Builder Request message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1beta1.IndexEndpointService.ListIndexEndpoints].ListIndexEndpointsResponse Response message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1beta1.IndexEndpointService.ListIndexEndpoints].ListIndexEndpointsResponse.Builder Response message for [IndexEndpointService.ListIndexEndpoints][google.cloud.aiplatform.v1beta1.IndexEndpointService.ListIndexEndpoints].ListIndexesRequest Request message for [IndexService.ListIndexes][google.cloud.aiplatform.v1beta1.IndexService.ListIndexes].ListIndexesRequest.Builder Request message for [IndexService.ListIndexes][google.cloud.aiplatform.v1beta1.IndexService.ListIndexes].ListIndexesResponse Response message for [IndexService.ListIndexes][google.cloud.aiplatform.v1beta1.IndexService.ListIndexes].ListIndexesResponse.Builder Response message for [IndexService.ListIndexes][google.cloud.aiplatform.v1beta1.IndexService.ListIndexes].ListMetadataSchemasRequest Request message for [MetadataService.ListMetadataSchemas][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataSchemas].ListMetadataSchemasRequest.Builder Request message for [MetadataService.ListMetadataSchemas][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataSchemas].ListMetadataSchemasResponse Response message for [MetadataService.ListMetadataSchemas][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataSchemas].ListMetadataSchemasResponse.Builder Response message for [MetadataService.ListMetadataSchemas][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataSchemas].ListMetadataStoresRequest Request message for [MetadataService.ListMetadataStores][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataStores].ListMetadataStoresRequest.Builder Request message for [MetadataService.ListMetadataStores][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataStores].ListMetadataStoresResponse Response message for [MetadataService.ListMetadataStores][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataStores].ListMetadataStoresResponse.Builder Response message for [MetadataService.ListMetadataStores][google.cloud.aiplatform.v1beta1.MetadataService.ListMetadataStores].ListModelDeploymentMonitoringJobsRequest Request message for [JobService.ListModelDeploymentMonitoringJobs][google.cloud.aiplatform.v1beta1.JobService.ListModelDeploymentMonitoringJobs].ListModelDeploymentMonitoringJobsRequest.Builder Request message for [JobService.ListModelDeploymentMonitoringJobs][google.cloud.aiplatform.v1beta1.JobService.ListModelDeploymentMonitoringJobs].ListModelDeploymentMonitoringJobsResponse Response message for [JobService.ListModelDeploymentMonitoringJobs][google.cloud.aiplatform.v1beta1.JobService.ListModelDeploymentMonitoringJobs].ListModelDeploymentMonitoringJobsResponse.Builder Response message for [JobService.ListModelDeploymentMonitoringJobs][google.cloud.aiplatform.v1beta1.JobService.ListModelDeploymentMonitoringJobs].ListModelEvaluationSlicesRequest Request message for [ModelService.ListModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluationSlices].ListModelEvaluationSlicesRequest.Builder Request message for [ModelService.ListModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluationSlices].ListModelEvaluationSlicesResponse Response message for [ModelService.ListModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluationSlices].ListModelEvaluationSlicesResponse.Builder Response message for [ModelService.ListModelEvaluationSlices][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluationSlices].ListModelEvaluationsRequest Request message for [ModelService.ListModelEvaluations][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluations].ListModelEvaluationsRequest.Builder Request message for [ModelService.ListModelEvaluations][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluations].ListModelEvaluationsResponse Response message for [ModelService.ListModelEvaluations][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluations].ListModelEvaluationsResponse.Builder Response message for [ModelService.ListModelEvaluations][google.cloud.aiplatform.v1beta1.ModelService.ListModelEvaluations].ListModelsRequest Request message for [ModelService.ListModels][google.cloud.aiplatform.v1beta1.ModelService.ListModels].ListModelsRequest.Builder Request message for [ModelService.ListModels][google.cloud.aiplatform.v1beta1.ModelService.ListModels].ListModelsResponse Response message for [ModelService.ListModels][google.cloud.aiplatform.v1beta1.ModelService.ListModels]ListModelsResponse.Builder Response message for [ModelService.ListModels][google.cloud.aiplatform.v1beta1.ModelService.ListModels]ListModelVersionsRequest Request message for [ModelService.ListModelVersions][google.cloud.aiplatform.v1beta1.ModelService.ListModelVersions].ListModelVersionsRequest.Builder Request message for [ModelService.ListModelVersions][google.cloud.aiplatform.v1beta1.ModelService.ListModelVersions].ListModelVersionsResponse Response message for [ModelService.ListModelVersions][google.cloud.aiplatform.v1beta1.ModelService.ListModelVersions]ListModelVersionsResponse.Builder Response message for [ModelService.ListModelVersions][google.cloud.aiplatform.v1beta1.ModelService.ListModelVersions]ListNasJobsRequest Request message for [JobService.ListNasJobs][google.cloud.aiplatform.v1beta1.JobService.ListNasJobs].ListNasJobsRequest.Builder Request message for [JobService.ListNasJobs][google.cloud.aiplatform.v1beta1.JobService.ListNasJobs].ListNasJobsResponse Response message for [JobService.ListNasJobs][google.cloud.aiplatform.v1beta1.JobService.ListNasJobs]ListNasJobsResponse.Builder Response message for [JobService.ListNasJobs][google.cloud.aiplatform.v1beta1.JobService.ListNasJobs]ListNasTrialDetailsRequest Request message for [JobService.ListNasTrialDetails][google.cloud.aiplatform.v1beta1.JobService.ListNasTrialDetails].ListNasTrialDetailsRequest.Builder Request message for [JobService.ListNasTrialDetails][google.cloud.aiplatform.v1beta1.JobService.ListNasTrialDetails].ListNasTrialDetailsResponse Response message for [JobService.ListNasTrialDetails][google.cloud.aiplatform.v1beta1.JobService.ListNasTrialDetails]ListNasTrialDetailsResponse.Builder Response message for [JobService.ListNasTrialDetails][google.cloud.aiplatform.v1beta1.JobService.ListNasTrialDetails]ListOptimalTrialsRequest Request message for [VizierService.ListOptimalTrials][google.cloud.aiplatform.v1beta1.VizierService.ListOptimalTrials].ListOptimalTrialsRequest.Builder Request message for [VizierService.ListOptimalTrials][google.cloud.aiplatform.v1beta1.VizierService.ListOptimalTrials].ListOptimalTrialsResponse Response message for [VizierService.ListOptimalTrials][google.cloud.aiplatform.v1beta1.VizierService.ListOptimalTrials].ListOptimalTrialsResponse.Builder Response message for [VizierService.ListOptimalTrials][google.cloud.aiplatform.v1beta1.VizierService.ListOptimalTrials].ListPersistentResourcesRequest Request message for [PersistentResourceService.ListPersistentResource][].ListPersistentResourcesRequest.Builder Request message for [PersistentResourceService.ListPersistentResource][].ListPersistentResourcesResponse Response message for [PersistentResourceService.ListPersistentResources][google.cloud.aiplatform.v1beta1.PersistentResourceService.ListPersistentResources]ListPersistentResourcesResponse.Builder Response message for [PersistentResourceService.ListPersistentResources][google.cloud.aiplatform.v1beta1.PersistentResourceService.ListPersistentResources]ListPipelineJobsRequest Request message for [PipelineService.ListPipelineJobs][google.cloud.aiplatform.v1beta1.PipelineService.ListPipelineJobs].ListPipelineJobsRequest.Builder Request message for [PipelineService.ListPipelineJobs][google.cloud.aiplatform.v1beta1.PipelineService.ListPipelineJobs].ListPipelineJobsResponse Response message for [PipelineService.ListPipelineJobs][google.cloud.aiplatform.v1beta1.PipelineService.ListPipelineJobs]ListPipelineJobsResponse.Builder Response message for [PipelineService.ListPipelineJobs][google.cloud.aiplatform.v1beta1.PipelineService.ListPipelineJobs]ListSavedQueriesRequest Request message for [DatasetService.ListSavedQueries][google.cloud.aiplatform.v1beta1.DatasetService.ListSavedQueries].ListSavedQueriesRequest.Builder Request message for [DatasetService.ListSavedQueries][google.cloud.aiplatform.v1beta1.DatasetService.ListSavedQueries].ListSavedQueriesResponse Response message for [DatasetService.ListSavedQueries][google.cloud.aiplatform.v1beta1.DatasetService.ListSavedQueries].ListSavedQueriesResponse.Builder Response message for [DatasetService.ListSavedQueries][google.cloud.aiplatform.v1beta1.DatasetService.ListSavedQueries].ListSchedulesRequest Request message for [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules].ListSchedulesRequest.Builder Request message for [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules].ListSchedulesResponse Response message for [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules]ListSchedulesResponse.Builder Response message for [ScheduleService.ListSchedules][google.cloud.aiplatform.v1beta1.ScheduleService.ListSchedules]ListSpecialistPoolsRequest Request message for [SpecialistPoolService.ListSpecialistPools][google.cloud.aiplatform.v1beta1.SpecialistPoolService.ListSpecialistPools].ListSpecialistPoolsRequest.Builder Request message for [SpecialistPoolService.ListSpecialistPools][google.cloud.aiplatform.v1beta1.SpecialistPoolService.ListSpecialistPools].ListSpecialistPoolsResponse Response message for [SpecialistPoolService.ListSpecialistPools][google.cloud.aiplatform.v1beta1.SpecialistPoolService.ListSpecialistPools].ListSpecialistPoolsResponse.Builder Response message for [SpecialistPoolService.ListSpecialistPools][google.cloud.aiplatform.v1beta1.SpecialistPoolService.ListSpecialistPools].ListStudiesRequest Request message for [VizierService.ListStudies][google.cloud.aiplatform.v1beta1.VizierService.ListStudies].ListStudiesRequest.Builder Request message for [VizierService.ListStudies][google.cloud.aiplatform.v1beta1.VizierService.ListStudies].ListStudiesResponse Response message for [VizierService.ListStudies][google.cloud.aiplatform.v1beta1.VizierService.ListStudies].ListStudiesResponse.Builder Response message for [VizierService.ListStudies][google.cloud.aiplatform.v1beta1.VizierService.ListStudies].ListTensorboardExperimentsRequest Request message for [TensorboardService.ListTensorboardExperiments][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardExperiments].ListTensorboardExperimentsRequest.Builder Request message for [TensorboardService.ListTensorboardExperiments][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardExperiments].ListTensorboardExperimentsResponse Response message for [TensorboardService.ListTensorboardExperiments][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardExperiments].ListTensorboardExperimentsResponse.Builder Response message for [TensorboardService.ListTensorboardExperiments][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardExperiments].ListTensorboardRunsRequest Request message for [TensorboardService.ListTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardRuns].ListTensorboardRunsRequest.Builder Request message for [TensorboardService.ListTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardRuns].ListTensorboardRunsResponse Response message for [TensorboardService.ListTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardRuns].ListTensorboardRunsResponse.Builder Response message for [TensorboardService.ListTensorboardRuns][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardRuns].ListTensorboardsRequest Request message for [TensorboardService.ListTensorboards][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboards].ListTensorboardsRequest.Builder Request message for [TensorboardService.ListTensorboards][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboards].ListTensorboardsResponse Response message for [TensorboardService.ListTensorboards][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboards].ListTensorboardsResponse.Builder Response message for [TensorboardService.ListTensorboards][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboards].ListTensorboardTimeSeriesRequest Request message for [TensorboardService.ListTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardTimeSeries].ListTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.ListTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardTimeSeries].ListTensorboardTimeSeriesResponse Response message for [TensorboardService.ListTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardTimeSeries].ListTensorboardTimeSeriesResponse.Builder Response message for [TensorboardService.ListTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.ListTensorboardTimeSeries].ListTrainingPipelinesRequest Request message for [PipelineService.ListTrainingPipelines][google.cloud.aiplatform.v1beta1.PipelineService.ListTrainingPipelines].ListTrainingPipelinesRequest.Builder Request message for [PipelineService.ListTrainingPipelines][google.cloud.aiplatform.v1beta1.PipelineService.ListTrainingPipelines].ListTrainingPipelinesResponse Response message for [PipelineService.ListTrainingPipelines][google.cloud.aiplatform.v1beta1.PipelineService.ListTrainingPipelines]ListTrainingPipelinesResponse.Builder Response message for [PipelineService.ListTrainingPipelines][google.cloud.aiplatform.v1beta1.PipelineService.ListTrainingPipelines]ListTrialsRequest Request message for [VizierService.ListTrials][google.cloud.aiplatform.v1beta1.VizierService.ListTrials].ListTrialsRequest.Builder Request message for [VizierService.ListTrials][google.cloud.aiplatform.v1beta1.VizierService.ListTrials].ListTrialsResponse Response message for [VizierService.ListTrials][google.cloud.aiplatform.v1beta1.VizierService.ListTrials].ListTrialsResponse.Builder Response message for [VizierService.ListTrials][google.cloud.aiplatform.v1beta1.VizierService.ListTrials].LocationName LocationName.Builder Builder for projects/{project}/locations/{location}.LookupStudyRequest Request message for [VizierService.LookupStudy][google.cloud.aiplatform.v1beta1.VizierService.LookupStudy].LookupStudyRequest.Builder Request message for [VizierService.LookupStudy][google.cloud.aiplatform.v1beta1.VizierService.LookupStudy].MachineResourcesProto MachineSpec Specification of a single machine.MachineSpec.Builder Specification of a single machine.ManualBatchTuningParameters Manual batch tuning parameters.ManualBatchTuningParameters.Builder Manual batch tuning parameters.ManualBatchTuningParametersProto MatchServiceClient Service Description: MatchService is a Google managed service for efficient vector similarity search at scale.MatchServiceClient.ListLocationsFixedSizeCollection MatchServiceClient.ListLocationsPage MatchServiceClient.ListLocationsPagedResponse MatchServiceGrpc MatchService is a Google managed service for efficient vector similarity search at scale.MatchServiceGrpc.MatchServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service MatchService.MatchServiceGrpc.MatchServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service MatchService.MatchServiceGrpc.MatchServiceImplBase Base class for the server implementation of the service MatchService.MatchServiceGrpc.MatchServiceStub A stub to allow clients to do asynchronous rpc calls to service MatchService.MatchServiceProto MatchServiceSettings Settings class to configure an instance ofMatchServiceClient
.MatchServiceSettings.Builder Builder for MatchServiceSettings.Measurement A message representing a Measurement of a Trial.Measurement.Builder A message representing a Measurement of a Trial.Measurement.Metric A message representing a metric in the measurement.Measurement.Metric.Builder A message representing a metric in the measurement.MergeVersionAliasesRequest Request message for [ModelService.MergeVersionAliases][google.cloud.aiplatform.v1beta1.ModelService.MergeVersionAliases].MergeVersionAliasesRequest.Builder Request message for [ModelService.MergeVersionAliases][google.cloud.aiplatform.v1beta1.ModelService.MergeVersionAliases].MetadataProto MetadataSchema Instance of a general MetadataSchema.MetadataSchema.Builder Instance of a general MetadataSchema.MetadataSchemaName MetadataSchemaName.Builder Builder for projects/{project}/locations/{location}/metadataStores/{metadata_store}/metadataSchemas/{metadata_schema}.MetadataSchemaProto MetadataServiceClient Service Description: Service for reading and writing metadata entries.MetadataServiceClient.ListArtifactsFixedSizeCollection MetadataServiceClient.ListArtifactsPage MetadataServiceClient.ListArtifactsPagedResponse MetadataServiceClient.ListContextsFixedSizeCollection MetadataServiceClient.ListContextsPage MetadataServiceClient.ListContextsPagedResponse MetadataServiceClient.ListExecutionsFixedSizeCollection MetadataServiceClient.ListExecutionsPage MetadataServiceClient.ListExecutionsPagedResponse MetadataServiceClient.ListLocationsFixedSizeCollection MetadataServiceClient.ListLocationsPage MetadataServiceClient.ListLocationsPagedResponse MetadataServiceClient.ListMetadataSchemasFixedSizeCollection MetadataServiceClient.ListMetadataSchemasPage MetadataServiceClient.ListMetadataSchemasPagedResponse MetadataServiceClient.ListMetadataStoresFixedSizeCollection MetadataServiceClient.ListMetadataStoresPage MetadataServiceClient.ListMetadataStoresPagedResponse MetadataServiceGrpc Service for reading and writing metadata entries.MetadataServiceGrpc.MetadataServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service MetadataService.MetadataServiceGrpc.MetadataServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service MetadataService.MetadataServiceGrpc.MetadataServiceImplBase Base class for the server implementation of the service MetadataService.MetadataServiceGrpc.MetadataServiceStub A stub to allow clients to do asynchronous rpc calls to service MetadataService.MetadataServiceProto MetadataServiceSettings Settings class to configure an instance ofMetadataServiceClient
.MetadataServiceSettings.Builder Builder for MetadataServiceSettings.MetadataStore Instance of a metadata store.MetadataStore.Builder Instance of a metadata store.MetadataStore.MetadataStoreState Represents state information for a MetadataStore.MetadataStore.MetadataStoreState.Builder Represents state information for a MetadataStore.MetadataStoreName MetadataStoreName.Builder Builder for projects/{project}/locations/{location}/metadataStores/{metadata_store}.MigratableResource Represents one resource that exists in automl.googleapis.com, datalabeling.googleapis.com or ml.googleapis.com.MigratableResource.AutomlDataset Represents one Dataset in automl.googleapis.com.MigratableResource.AutomlDataset.Builder Represents one Dataset in automl.googleapis.com.MigratableResource.AutomlModel Represents one Model in automl.googleapis.com.MigratableResource.AutomlModel.Builder Represents one Model in automl.googleapis.com.MigratableResource.Builder Represents one resource that exists in automl.googleapis.com, datalabeling.googleapis.com or ml.googleapis.com.MigratableResource.DataLabelingDataset Represents one Dataset in datalabeling.googleapis.com.MigratableResource.DataLabelingDataset.Builder Represents one Dataset in datalabeling.googleapis.com.MigratableResource.DataLabelingDataset.DataLabelingAnnotatedDataset Represents one AnnotatedDataset in datalabeling.googleapis.com.MigratableResource.DataLabelingDataset.DataLabelingAnnotatedDataset.Builder Represents one AnnotatedDataset in datalabeling.googleapis.com.MigratableResource.MlEngineModelVersion Represents one model Version in ml.googleapis.com.MigratableResource.MlEngineModelVersion.Builder Represents one model Version in ml.googleapis.com.MigratableResourceProto MigrateResourceRequest Config of migrating one resource from automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com to Vertex AI.MigrateResourceRequest.Builder Config of migrating one resource from automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com to Vertex AI.MigrateResourceRequest.MigrateAutomlDatasetConfig Config for migrating Dataset in automl.googleapis.com to Vertex AI's Dataset.MigrateResourceRequest.MigrateAutomlDatasetConfig.Builder Config for migrating Dataset in automl.googleapis.com to Vertex AI's Dataset.MigrateResourceRequest.MigrateAutomlModelConfig Config for migrating Model in automl.googleapis.com to Vertex AI's Model.MigrateResourceRequest.MigrateAutomlModelConfig.Builder Config for migrating Model in automl.googleapis.com to Vertex AI's Model.MigrateResourceRequest.MigrateDataLabelingDatasetConfig Config for migrating Dataset in datalabeling.googleapis.com to Vertex AI's Dataset.MigrateResourceRequest.MigrateDataLabelingDatasetConfig.Builder Config for migrating Dataset in datalabeling.googleapis.com to Vertex AI's Dataset.MigrateResourceRequest.MigrateDataLabelingDatasetConfig.MigrateDataLabelingAnnotatedDatasetConfig Config for migrating AnnotatedDataset in datalabeling.googleapis.com to Vertex AI's SavedQuery.MigrateResourceRequest.MigrateDataLabelingDatasetConfig.MigrateDataLabelingAnnotatedDatasetConfig.Builder Config for migrating AnnotatedDataset in datalabeling.googleapis.com to Vertex AI's SavedQuery.MigrateResourceRequest.MigrateMlEngineModelVersionConfig Config for migrating version in ml.googleapis.com to Vertex AI's Model.MigrateResourceRequest.MigrateMlEngineModelVersionConfig.Builder Config for migrating version in ml.googleapis.com to Vertex AI's Model.MigrateResourceResponse Describes a successfully migrated resource.MigrateResourceResponse.Builder Describes a successfully migrated resource.MigrationServiceClient Service Description: A service that migrates resources from automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com to Vertex AI.MigrationServiceClient.ListLocationsFixedSizeCollection MigrationServiceClient.ListLocationsPage MigrationServiceClient.ListLocationsPagedResponse MigrationServiceClient.SearchMigratableResourcesFixedSizeCollection MigrationServiceClient.SearchMigratableResourcesPage MigrationServiceClient.SearchMigratableResourcesPagedResponse MigrationServiceGrpc A service that migrates resources from automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com to Vertex AI.MigrationServiceGrpc.MigrationServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service MigrationService.MigrationServiceGrpc.MigrationServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service MigrationService.MigrationServiceGrpc.MigrationServiceImplBase Base class for the server implementation of the service MigrationService.MigrationServiceGrpc.MigrationServiceStub A stub to allow clients to do asynchronous rpc calls to service MigrationService.MigrationServiceProto MigrationServiceSettings Settings class to configure an instance ofMigrationServiceClient
.MigrationServiceSettings.Builder Builder for MigrationServiceSettings.Model A trained machine learning Model.Model.Builder A trained machine learning Model.Model.ExportFormat Represents export format supported by the Model.Model.ExportFormat.Builder Represents export format supported by the Model.Model.OriginalModelInfo Contains information about the original Model if this Model is a copy.Model.OriginalModelInfo.Builder Contains information about the original Model if this Model is a copy.ModelContainerSpec Specification of a container for serving predictions.ModelContainerSpec.Builder Specification of a container for serving predictions.ModelDeploymentMonitoringBigQueryTable ModelDeploymentMonitoringBigQueryTable specifies the BigQuery table name as well as some information of the logs stored in this table.ModelDeploymentMonitoringBigQueryTable.Builder ModelDeploymentMonitoringBigQueryTable specifies the BigQuery table name as well as some information of the logs stored in this table.ModelDeploymentMonitoringJob Represents a job that runs periodically to monitor the deployed models in an endpoint.ModelDeploymentMonitoringJob.Builder Represents a job that runs periodically to monitor the deployed models in an endpoint.ModelDeploymentMonitoringJob.LatestMonitoringPipelineMetadata All metadata of most recent monitoring pipelines.ModelDeploymentMonitoringJob.LatestMonitoringPipelineMetadata.Builder All metadata of most recent monitoring pipelines.ModelDeploymentMonitoringJobName ModelDeploymentMonitoringJobName.Builder Builder for projects/{project}/locations/{location}/modelDeploymentMonitoringJobs/{model_deployment_monitoring_job}.ModelDeploymentMonitoringJobProto ModelDeploymentMonitoringObjectiveConfig ModelDeploymentMonitoringObjectiveConfig contains the pair of deployed_model_id to ModelMonitoringObjectiveConfig.ModelDeploymentMonitoringObjectiveConfig.Builder ModelDeploymentMonitoringObjectiveConfig contains the pair of deployed_model_id to ModelMonitoringObjectiveConfig.ModelDeploymentMonitoringScheduleConfig The config for scheduling monitoring job.ModelDeploymentMonitoringScheduleConfig.Builder The config for scheduling monitoring job.ModelEvaluation A collection of metrics calculated by comparing Model's predictions on all of the test data against annotations from the test data.ModelEvaluation.BiasConfig Configuration for bias detection.ModelEvaluation.BiasConfig.Builder Configuration for bias detection.ModelEvaluation.Builder A collection of metrics calculated by comparing Model's predictions on all of the test data against annotations from the test data.ModelEvaluation.ModelEvaluationExplanationSpec Protobuf typegoogle.cloud.aiplatform.v1beta1.ModelEvaluation.ModelEvaluationExplanationSpec
ModelEvaluation.ModelEvaluationExplanationSpec.Builder Protobuf typegoogle.cloud.aiplatform.v1beta1.ModelEvaluation.ModelEvaluationExplanationSpec
ModelEvaluationName ModelEvaluationName.Builder Builder for projects/{project}/locations/{location}/models/{model}/evaluations/{evaluation}.ModelEvaluationProto ModelEvaluationSlice A collection of metrics calculated by comparing Model's predictions on a slice of the test data against ground truth annotations.ModelEvaluationSlice.Builder A collection of metrics calculated by comparing Model's predictions on a slice of the test data against ground truth annotations.ModelEvaluationSlice.Slice Definition of a slice.ModelEvaluationSlice.Slice.Builder Definition of a slice.ModelEvaluationSlice.Slice.SliceSpec Specification for how the data should be sliced.ModelEvaluationSlice.Slice.SliceSpec.Builder Specification for how the data should be sliced.ModelEvaluationSlice.Slice.SliceSpec.Range A range of values for slice(s).ModelEvaluationSlice.Slice.SliceSpec.Range.Builder A range of values for slice(s).ModelEvaluationSlice.Slice.SliceSpec.SliceConfig Specification message containing the config for this SliceSpec.ModelEvaluationSlice.Slice.SliceSpec.SliceConfig.Builder Specification message containing the config for this SliceSpec.ModelEvaluationSlice.Slice.SliceSpec.Value Single value that supports strings and floats.ModelEvaluationSlice.Slice.SliceSpec.Value.Builder Single value that supports strings and floats.ModelEvaluationSliceName ModelEvaluationSliceName.Builder Builder for projects/{project}/locations/{location}/models/{model}/evaluations/{evaluation}/slices/{slice}.ModelEvaluationSliceProto ModelExplanation Aggregated explanation metrics for a Model over a set of instances.ModelExplanation.Builder Aggregated explanation metrics for a Model over a set of instances.ModelGardenServiceClient Service Description: The interface of Model Garden Service.ModelGardenServiceClient.ListLocationsFixedSizeCollection ModelGardenServiceClient.ListLocationsPage ModelGardenServiceClient.ListLocationsPagedResponse ModelGardenServiceGrpc The interface of Model Garden Service.ModelGardenServiceGrpc.ModelGardenServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service ModelGardenService.ModelGardenServiceGrpc.ModelGardenServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ModelGardenService.ModelGardenServiceGrpc.ModelGardenServiceImplBase Base class for the server implementation of the service ModelGardenService.ModelGardenServiceGrpc.ModelGardenServiceStub A stub to allow clients to do asynchronous rpc calls to service ModelGardenService.ModelGardenServiceProto ModelGardenServiceSettings Settings class to configure an instance ofModelGardenServiceClient
.ModelGardenServiceSettings.Builder Builder for ModelGardenServiceSettings.ModelMonitoringAlertConfig Protobuf typegoogle.cloud.aiplatform.v1beta1.ModelMonitoringAlertConfig
ModelMonitoringAlertConfig.Builder Protobuf typegoogle.cloud.aiplatform.v1beta1.ModelMonitoringAlertConfig
ModelMonitoringAlertConfig.EmailAlertConfig The config for email alert.ModelMonitoringAlertConfig.EmailAlertConfig.Builder The config for email alert.ModelMonitoringConfig The model monitoring configuration used for Batch Prediction Job.ModelMonitoringConfig.Builder The model monitoring configuration used for Batch Prediction Job.ModelMonitoringObjectiveConfig The objective configuration for model monitoring, including the information needed to detect anomalies for one particular model.ModelMonitoringObjectiveConfig.Builder The objective configuration for model monitoring, including the information needed to detect anomalies for one particular model.ModelMonitoringObjectiveConfig.ExplanationConfig The config for integrating with Vertex Explainable AI.ModelMonitoringObjectiveConfig.ExplanationConfig.Builder The config for integrating with Vertex Explainable AI.ModelMonitoringObjectiveConfig.ExplanationConfig.ExplanationBaseline Output from [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob] for Model Monitoring baseline dataset, which can be used to generate baseline attribution scores.ModelMonitoringObjectiveConfig.ExplanationConfig.ExplanationBaseline.Builder Output from [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob] for Model Monitoring baseline dataset, which can be used to generate baseline attribution scores.ModelMonitoringObjectiveConfig.PredictionDriftDetectionConfig The config for Prediction data drift detection.ModelMonitoringObjectiveConfig.PredictionDriftDetectionConfig.Builder The config for Prediction data drift detection.ModelMonitoringObjectiveConfig.TrainingDataset Training Dataset information.ModelMonitoringObjectiveConfig.TrainingDataset.Builder Training Dataset information.ModelMonitoringObjectiveConfig.TrainingPredictionSkewDetectionConfig The config for Training & Prediction data skew detection.ModelMonitoringObjectiveConfig.TrainingPredictionSkewDetectionConfig.Builder The config for Training & Prediction data skew detection.ModelMonitoringProto ModelMonitoringStatsAnomalies Statistics and anomalies generated by Model Monitoring.ModelMonitoringStatsAnomalies.Builder Statistics and anomalies generated by Model Monitoring.ModelMonitoringStatsAnomalies.FeatureHistoricStatsAnomalies Historical Stats (and Anomalies) for a specific Feature.ModelMonitoringStatsAnomalies.FeatureHistoricStatsAnomalies.Builder Historical Stats (and Anomalies) for a specific Feature.ModelName ModelName.Builder Builder for projects/{project}/locations/{location}/models/{model}.ModelProto ModelServiceClient Service Description: A service for managing Vertex AI's machine learning Models.ModelServiceClient.ListLocationsFixedSizeCollection ModelServiceClient.ListLocationsPage ModelServiceClient.ListLocationsPagedResponse ModelServiceClient.ListModelEvaluationsFixedSizeCollection ModelServiceClient.ListModelEvaluationSlicesFixedSizeCollection ModelServiceClient.ListModelEvaluationSlicesPage ModelServiceClient.ListModelEvaluationSlicesPagedResponse ModelServiceClient.ListModelEvaluationsPage ModelServiceClient.ListModelEvaluationsPagedResponse ModelServiceClient.ListModelsFixedSizeCollection ModelServiceClient.ListModelsPage ModelServiceClient.ListModelsPagedResponse ModelServiceClient.ListModelVersionsFixedSizeCollection ModelServiceClient.ListModelVersionsPage ModelServiceClient.ListModelVersionsPagedResponse ModelServiceGrpc A service for managing Vertex AI's machine learning Models.ModelServiceGrpc.ModelServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service ModelService.ModelServiceGrpc.ModelServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ModelService.ModelServiceGrpc.ModelServiceImplBase Base class for the server implementation of the service ModelService.ModelServiceGrpc.ModelServiceStub A stub to allow clients to do asynchronous rpc calls to service ModelService.ModelServiceProto ModelServiceSettings Settings class to configure an instance ofModelServiceClient
.ModelServiceSettings.Builder Builder for ModelServiceSettings.ModelSourceInfo Detail description of the source information of the model.ModelSourceInfo.Builder Detail description of the source information of the model.MutateDeployedIndexOperationMetadata Runtime operation information for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedIndexOperationMetadata.Builder Runtime operation information for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedIndexRequest Request message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedIndexRequest.Builder Request message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedIndexResponse Response message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedIndexResponse.Builder Response message for [IndexEndpointService.MutateDeployedIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.MutateDeployedIndex].MutateDeployedModelOperationMetadata Runtime operation information for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].MutateDeployedModelOperationMetadata.Builder Runtime operation information for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].MutateDeployedModelRequest Request message for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].MutateDeployedModelRequest.Builder Request message for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].MutateDeployedModelResponse Response message for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].MutateDeployedModelResponse.Builder Response message for [EndpointService.MutateDeployedModel][google.cloud.aiplatform.v1beta1.EndpointService.MutateDeployedModel].NasJob Represents a Neural Architecture Search (NAS) job.NasJob.Builder Represents a Neural Architecture Search (NAS) job.NasJobName NasJobName.Builder Builder for projects/{project}/locations/{location}/nasJobs/{nas_job}.NasJobOutput Represents a uCAIP NasJob output.NasJobOutput.Builder Represents a uCAIP NasJob output.NasJobOutput.MultiTrialJobOutput The output of a multi-trial Neural Architecture Search (NAS) jobs.NasJobOutput.MultiTrialJobOutput.Builder The output of a multi-trial Neural Architecture Search (NAS) jobs.NasJobProto NasJobSpec Represents the spec of a NasJob.NasJobSpec.Builder Represents the spec of a NasJob.NasJobSpec.MultiTrialAlgorithmSpec The spec of multi-trial Neural Architecture Search (NAS).NasJobSpec.MultiTrialAlgorithmSpec.Builder The spec of multi-trial Neural Architecture Search (NAS).NasJobSpec.MultiTrialAlgorithmSpec.MetricSpec Represents a metric to optimize.NasJobSpec.MultiTrialAlgorithmSpec.MetricSpec.Builder Represents a metric to optimize.NasJobSpec.MultiTrialAlgorithmSpec.SearchTrialSpec Represent spec for search trials.NasJobSpec.MultiTrialAlgorithmSpec.SearchTrialSpec.Builder Represent spec for search trials.NasJobSpec.MultiTrialAlgorithmSpec.TrainTrialSpec Represent spec for train trials.NasJobSpec.MultiTrialAlgorithmSpec.TrainTrialSpec.Builder Represent spec for train trials.NasTrial Represents a uCAIP NasJob trial.NasTrial.Builder Represents a uCAIP NasJob trial.NasTrialDetail Represents a NasTrial details along with its parameters.NasTrialDetail.Builder Represents a NasTrial details along with its parameters.NasTrialDetailName NasTrialDetailName.Builder Builder for projects/{project}/locations/{location}/nasJobs/{nas_job}/nasTrialDetails/{nas_trial_detail}.NearestNeighborSearchOperationMetadata Runtime operation metadata with regard to Matching Engine Index.NearestNeighborSearchOperationMetadata.Builder Runtime operation metadata with regard to Matching Engine Index.NearestNeighborSearchOperationMetadata.ContentValidationStats Protobuf typegoogle.cloud.aiplatform.v1beta1.NearestNeighborSearchOperationMetadata.ContentValidationStats
NearestNeighborSearchOperationMetadata.ContentValidationStats.Builder Protobuf typegoogle.cloud.aiplatform.v1beta1.NearestNeighborSearchOperationMetadata.ContentValidationStats
NearestNeighborSearchOperationMetadata.RecordError Protobuf typegoogle.cloud.aiplatform.v1beta1.NearestNeighborSearchOperationMetadata.RecordError
NearestNeighborSearchOperationMetadata.RecordError.Builder Protobuf typegoogle.cloud.aiplatform.v1beta1.NearestNeighborSearchOperationMetadata.RecordError
Neighbor Neighbors for example-based explanations.Neighbor.Builder Neighbors for example-based explanations.NfsMount Represents a mount configuration for Network File System (NFS) to mount.NfsMount.Builder Represents a mount configuration for Network File System (NFS) to mount.OperationProto PauseModelDeploymentMonitoringJobRequest Request message for [JobService.PauseModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.PauseModelDeploymentMonitoringJob].PauseModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.PauseModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.PauseModelDeploymentMonitoringJob].PauseScheduleRequest Request message for [ScheduleService.PauseSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.PauseSchedule].PauseScheduleRequest.Builder Request message for [ScheduleService.PauseSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.PauseSchedule].PersistentDiskSpec Represents the spec of [persistent disk][https://cloud.google.com/compute/docs/disks/persistent-disks] options.PersistentDiskSpec.Builder Represents the spec of [persistent disk][https://cloud.google.com/compute/docs/disks/persistent-disks] options.PersistentResource Represents long-lasting resources that are dedicated to users to runs custom workloads.PersistentResource.Builder Represents long-lasting resources that are dedicated to users to runs custom workloads.PersistentResourceName PersistentResourceName.Builder Builder for projects/{project}/locations/{location}/persistentResources/{persistent_resource}.PersistentResourceProto PersistentResourceServiceClient Service Description: A service for managing Vertex AI's machine learning PersistentResource.PersistentResourceServiceClient.ListLocationsFixedSizeCollection PersistentResourceServiceClient.ListLocationsPage PersistentResourceServiceClient.ListLocationsPagedResponse PersistentResourceServiceClient.ListPersistentResourcesFixedSizeCollection PersistentResourceServiceClient.ListPersistentResourcesPage PersistentResourceServiceClient.ListPersistentResourcesPagedResponse PersistentResourceServiceGrpc A service for managing Vertex AI's machine learning PersistentResource.PersistentResourceServiceGrpc.PersistentResourceServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service PersistentResourceService.PersistentResourceServiceGrpc.PersistentResourceServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service PersistentResourceService.PersistentResourceServiceGrpc.PersistentResourceServiceImplBase Base class for the server implementation of the service PersistentResourceService.PersistentResourceServiceGrpc.PersistentResourceServiceStub A stub to allow clients to do asynchronous rpc calls to service PersistentResourceService.PersistentResourceServiceProto PersistentResourceServiceSettings Settings class to configure an instance ofPersistentResourceServiceClient
.PersistentResourceServiceSettings.Builder Builder for PersistentResourceServiceSettings.Pipeline PipelineFailurePolicyProto PipelineJob An instance of a machine learning PipelineJob.PipelineJob.Builder An instance of a machine learning PipelineJob.PipelineJob.RuntimeConfig The runtime config of a PipelineJob.PipelineJob.RuntimeConfig.Builder The runtime config of a PipelineJob.PipelineJob.RuntimeConfig.InputArtifact The type of an input artifact.PipelineJob.RuntimeConfig.InputArtifact.Builder The type of an input artifact.PipelineJobDetail The runtime detail of PipelineJob.PipelineJobDetail.Builder The runtime detail of PipelineJob.PipelineJobName PipelineJobName.Builder Builder for projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}.PipelineServiceClient Service Description: A service for creating and managing Vertex AI's pipelines.PipelineServiceClient.ListLocationsFixedSizeCollection PipelineServiceClient.ListLocationsPage PipelineServiceClient.ListLocationsPagedResponse PipelineServiceClient.ListPipelineJobsFixedSizeCollection PipelineServiceClient.ListPipelineJobsPage PipelineServiceClient.ListPipelineJobsPagedResponse PipelineServiceClient.ListTrainingPipelinesFixedSizeCollection PipelineServiceClient.ListTrainingPipelinesPage PipelineServiceClient.ListTrainingPipelinesPagedResponse PipelineServiceGrpc A service for creating and managing Vertex AI's pipelines.PipelineServiceGrpc.PipelineServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service PipelineService.PipelineServiceGrpc.PipelineServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service PipelineService.PipelineServiceGrpc.PipelineServiceImplBase Base class for the server implementation of the service PipelineService.PipelineServiceGrpc.PipelineServiceStub A stub to allow clients to do asynchronous rpc calls to service PipelineService.PipelineServiceProto PipelineServiceSettings Settings class to configure an instance ofPipelineServiceClient
.PipelineServiceSettings.Builder Builder for PipelineServiceSettings.PipelineStateProto PipelineTaskDetail The runtime detail of a task execution.PipelineTaskDetail.ArtifactList A list of artifact metadata.PipelineTaskDetail.ArtifactList.Builder A list of artifact metadata.PipelineTaskDetail.Builder The runtime detail of a task execution.PipelineTaskDetail.PipelineTaskStatus A single record of the task status.PipelineTaskDetail.PipelineTaskStatus.Builder A single record of the task status.PipelineTaskExecutorDetail The runtime detail of a pipeline executor.PipelineTaskExecutorDetail.Builder The runtime detail of a pipeline executor.PipelineTaskExecutorDetail.ContainerDetail The detail of a container execution.PipelineTaskExecutorDetail.ContainerDetail.Builder The detail of a container execution.PipelineTaskExecutorDetail.CustomJobDetail The detailed info for a custom job executor.PipelineTaskExecutorDetail.CustomJobDetail.Builder The detailed info for a custom job executor.PipelineTemplateMetadata Pipeline template metadata if [PipelineJob.template_uri][google.cloud.aiplatform.v1beta1.PipelineJob.template_uri] is from supported template registry.PipelineTemplateMetadata.Builder Pipeline template metadata if [PipelineJob.template_uri][google.cloud.aiplatform.v1beta1.PipelineJob.template_uri] is from supported template registry.Port Represents a network port in a container.Port.Builder Represents a network port in a container.PredefinedSplit Assigns input data to training, validation, and test sets based on the value of a provided key.PredefinedSplit.Builder Assigns input data to training, validation, and test sets based on the value of a provided key.PredictionServiceClient Service Description: A service for online predictions and explanations.PredictionServiceClient.ListLocationsFixedSizeCollection PredictionServiceClient.ListLocationsPage PredictionServiceClient.ListLocationsPagedResponse PredictionServiceGrpc A service for online predictions and explanations.PredictionServiceGrpc.PredictionServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service PredictionService.PredictionServiceGrpc.PredictionServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service PredictionService.PredictionServiceGrpc.PredictionServiceImplBase Base class for the server implementation of the service PredictionService.PredictionServiceGrpc.PredictionServiceStub A stub to allow clients to do asynchronous rpc calls to service PredictionService.PredictionServiceProto PredictionServiceSettings Settings class to configure an instance ofPredictionServiceClient
.PredictionServiceSettings.Builder Builder for PredictionServiceSettings.PredictRequest Request message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].PredictRequest.Builder Request message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].PredictRequestResponseLoggingConfig Configuration for logging request-response to a BigQuery table.PredictRequestResponseLoggingConfig.Builder Configuration for logging request-response to a BigQuery table.PredictResponse Response message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].PredictResponse.Builder Response message for [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict].PredictSchemata Contains the schemata used in Model's predictions and explanations via [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict], [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain] and [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].PredictSchemata.Builder Contains the schemata used in Model's predictions and explanations via [PredictionService.Predict][google.cloud.aiplatform.v1beta1.PredictionService.Predict], [PredictionService.Explain][google.cloud.aiplatform.v1beta1.PredictionService.Explain] and [BatchPredictionJob][google.cloud.aiplatform.v1beta1.BatchPredictionJob].Presets Preset configuration for example-based explanationsPresets.Builder Preset configuration for example-based explanationsPrivateEndpoints PrivateEndpoints proto is used to provide paths for users to send requests privately.PrivateEndpoints.Builder PrivateEndpoints proto is used to provide paths for users to send requests privately.PrivateServiceConnectConfig Represents configuration for private service connect.PrivateServiceConnectConfig.Builder Represents configuration for private service connect.ProjectName ProjectName.Builder Builder for projects/{project}.PublisherModel A Model Garden Publisher Model.PublisherModel.Builder A Model Garden Publisher Model.PublisherModel.CallToAction Actions could take on this Publisher Model.PublisherModel.CallToAction.Builder Actions could take on this Publisher Model.PublisherModel.CallToAction.Deploy Model metadata that is needed for UploadModel or DeployModel/CreateEndpoint requests.PublisherModel.CallToAction.Deploy.Builder Model metadata that is needed for UploadModel or DeployModel/CreateEndpoint requests.PublisherModel.CallToAction.RegionalResourceReferences The regional resource name or the URI.PublisherModel.CallToAction.RegionalResourceReferences.Builder The regional resource name or the URI.PublisherModel.CallToAction.ViewRestApi Rest API docs.PublisherModel.CallToAction.ViewRestApi.Builder Rest API docs.PublisherModel.Documentation A named piece of documentation.PublisherModel.Documentation.Builder A named piece of documentation.PublisherModel.Parent The information about the parent of a model.PublisherModel.Parent.Builder The information about the parent of a model.PublisherModel.ResourceReference Reference to a resource.PublisherModel.ResourceReference.Builder Reference to a resource.PublisherModelName PublisherModelName.Builder Builder for publishers/{publisher}/models/{model}.PublisherModelProto PurgeArtifactsMetadata Details of operations that perform [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeArtifactsMetadata.Builder Details of operations that perform [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeArtifactsRequest Request message for [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeArtifactsRequest.Builder Request message for [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeArtifactsResponse Response message for [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeArtifactsResponse.Builder Response message for [MetadataService.PurgeArtifacts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeArtifacts].PurgeContextsMetadata Details of operations that perform [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeContextsMetadata.Builder Details of operations that perform [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeContextsRequest Request message for [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeContextsRequest.Builder Request message for [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeContextsResponse Response message for [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeContextsResponse.Builder Response message for [MetadataService.PurgeContexts][google.cloud.aiplatform.v1beta1.MetadataService.PurgeContexts].PurgeExecutionsMetadata Details of operations that perform [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PurgeExecutionsMetadata.Builder Details of operations that perform [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PurgeExecutionsRequest Request message for [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PurgeExecutionsRequest.Builder Request message for [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PurgeExecutionsResponse Response message for [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PurgeExecutionsResponse.Builder Response message for [MetadataService.PurgeExecutions][google.cloud.aiplatform.v1beta1.MetadataService.PurgeExecutions].PythonPackageSpec The spec of a Python packaged code.PythonPackageSpec.Builder The spec of a Python packaged code.QueryArtifactLineageSubgraphRequest Request message for [MetadataService.QueryArtifactLineageSubgraph][google.cloud.aiplatform.v1beta1.MetadataService.QueryArtifactLineageSubgraph].QueryArtifactLineageSubgraphRequest.Builder Request message for [MetadataService.QueryArtifactLineageSubgraph][google.cloud.aiplatform.v1beta1.MetadataService.QueryArtifactLineageSubgraph].QueryContextLineageSubgraphRequest Request message for [MetadataService.QueryContextLineageSubgraph][google.cloud.aiplatform.v1beta1.MetadataService.QueryContextLineageSubgraph].QueryContextLineageSubgraphRequest.Builder Request message for [MetadataService.QueryContextLineageSubgraph][google.cloud.aiplatform.v1beta1.MetadataService.QueryContextLineageSubgraph].QueryDeployedModelsRequest Request message for QueryDeployedModels method.QueryDeployedModelsRequest.Builder Request message for QueryDeployedModels method.QueryDeployedModelsResponse Response message for QueryDeployedModels method.QueryDeployedModelsResponse.Builder Response message for QueryDeployedModels method.QueryExecutionInputsAndOutputsRequest Request message for [MetadataService.QueryExecutionInputsAndOutputs][google.cloud.aiplatform.v1beta1.MetadataService.QueryExecutionInputsAndOutputs].QueryExecutionInputsAndOutputsRequest.Builder Request message for [MetadataService.QueryExecutionInputsAndOutputs][google.cloud.aiplatform.v1beta1.MetadataService.QueryExecutionInputsAndOutputs].RawPredictRequest Request message for [PredictionService.RawPredict][google.cloud.aiplatform.v1beta1.PredictionService.RawPredict].RawPredictRequest.Builder Request message for [PredictionService.RawPredict][google.cloud.aiplatform.v1beta1.PredictionService.RawPredict].RaySpec Configuration information for the Ray cluster.RaySpec.Builder Configuration information for the Ray cluster.ReadFeatureValuesRequest Request message for [FeaturestoreOnlineServingService.ReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.ReadFeatureValues].ReadFeatureValuesRequest.Builder Request message for [FeaturestoreOnlineServingService.ReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.ReadFeatureValues].ReadFeatureValuesResponse Response message for [FeaturestoreOnlineServingService.ReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.ReadFeatureValues].ReadFeatureValuesResponse.Builder Response message for [FeaturestoreOnlineServingService.ReadFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.ReadFeatureValues].ReadFeatureValuesResponse.EntityView Entity view with Feature values.ReadFeatureValuesResponse.EntityView.Builder Entity view with Feature values.ReadFeatureValuesResponse.EntityView.Data Container to hold value(s), successive in time, for one Feature from the request.ReadFeatureValuesResponse.EntityView.Data.Builder Container to hold value(s), successive in time, for one Feature from the request.ReadFeatureValuesResponse.FeatureDescriptor Metadata for requested Features.ReadFeatureValuesResponse.FeatureDescriptor.Builder Metadata for requested Features.ReadFeatureValuesResponse.Header Response header with metadata for the requested [ReadFeatureValuesRequest.entity_type][google.cloud.aiplatform.v1beta1.ReadFeatureValuesRequest.entity_type] and Features.ReadFeatureValuesResponse.Header.Builder Response header with metadata for the requested [ReadFeatureValuesRequest.entity_type][google.cloud.aiplatform.v1beta1.ReadFeatureValuesRequest.entity_type] and Features.ReadIndexDatapointsRequest The request message for [MatchService.ReadIndexDatapoints][google.cloud.aiplatform.v1beta1.MatchService.ReadIndexDatapoints].ReadIndexDatapointsRequest.Builder The request message for [MatchService.ReadIndexDatapoints][google.cloud.aiplatform.v1beta1.MatchService.ReadIndexDatapoints].ReadIndexDatapointsResponse The response message for [MatchService.ReadIndexDatapoints][google.cloud.aiplatform.v1beta1.MatchService.ReadIndexDatapoints].ReadIndexDatapointsResponse.Builder The response message for [MatchService.ReadIndexDatapoints][google.cloud.aiplatform.v1beta1.MatchService.ReadIndexDatapoints].ReadTensorboardBlobDataRequest Request message for [TensorboardService.ReadTensorboardBlobData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardBlobData].ReadTensorboardBlobDataRequest.Builder Request message for [TensorboardService.ReadTensorboardBlobData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardBlobData].ReadTensorboardBlobDataResponse Response message for [TensorboardService.ReadTensorboardBlobData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardBlobData].ReadTensorboardBlobDataResponse.Builder Response message for [TensorboardService.ReadTensorboardBlobData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardBlobData].ReadTensorboardSizeRequest Request message for [TensorboardService.ReadTensorboardSize][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardSize].ReadTensorboardSizeRequest.Builder Request message for [TensorboardService.ReadTensorboardSize][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardSize].ReadTensorboardSizeResponse Response message for [TensorboardService.ReadTensorboardSize][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardSize].ReadTensorboardSizeResponse.Builder Response message for [TensorboardService.ReadTensorboardSize][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardSize].ReadTensorboardTimeSeriesDataRequest Request message for [TensorboardService.ReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardTimeSeriesData].ReadTensorboardTimeSeriesDataRequest.Builder Request message for [TensorboardService.ReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardTimeSeriesData].ReadTensorboardTimeSeriesDataResponse Response message for [TensorboardService.ReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardTimeSeriesData].ReadTensorboardTimeSeriesDataResponse.Builder Response message for [TensorboardService.ReadTensorboardTimeSeriesData][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardTimeSeriesData].ReadTensorboardUsageRequest Request message for [TensorboardService.ReadTensorboardUsage][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardUsage].ReadTensorboardUsageRequest.Builder Request message for [TensorboardService.ReadTensorboardUsage][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardUsage].ReadTensorboardUsageResponse Response message for [TensorboardService.ReadTensorboardUsage][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardUsage].ReadTensorboardUsageResponse.Builder Response message for [TensorboardService.ReadTensorboardUsage][google.cloud.aiplatform.v1beta1.TensorboardService.ReadTensorboardUsage].ReadTensorboardUsageResponse.PerMonthUsageData Per month usage dataReadTensorboardUsageResponse.PerMonthUsageData.Builder Per month usage dataReadTensorboardUsageResponse.PerUserUsageData Per user usage data.ReadTensorboardUsageResponse.PerUserUsageData.Builder Per user usage data.RemoveContextChildrenRequest Request message for [MetadataService.DeleteContextChildrenRequest][].RemoveContextChildrenRequest.Builder Request message for [MetadataService.DeleteContextChildrenRequest][].RemoveContextChildrenResponse Response message for [MetadataService.RemoveContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.RemoveContextChildren].RemoveContextChildrenResponse.Builder Response message for [MetadataService.RemoveContextChildren][google.cloud.aiplatform.v1beta1.MetadataService.RemoveContextChildren].RemoveDatapointsRequest Request message for [IndexService.RemoveDatapoints][google.cloud.aiplatform.v1beta1.IndexService.RemoveDatapoints]RemoveDatapointsRequest.Builder Request message for [IndexService.RemoveDatapoints][google.cloud.aiplatform.v1beta1.IndexService.RemoveDatapoints]RemoveDatapointsResponse Response message for [IndexService.RemoveDatapoints][google.cloud.aiplatform.v1beta1.IndexService.RemoveDatapoints]RemoveDatapointsResponse.Builder Response message for [IndexService.RemoveDatapoints][google.cloud.aiplatform.v1beta1.IndexService.RemoveDatapoints]ResourcePool Represents the spec a group of resources of same type, e.g.ResourcePool.AutoscalingSpec The min/max number of replicas allowed if enabling autoscalingResourcePool.AutoscalingSpec.Builder The min/max number of replicas allowed if enabling autoscalingResourcePool.Builder Represents the spec a group of resources of same type, e.g.ResourceRuntime Persistent Cluster runtime information as outputResourceRuntime.Builder Persistent Cluster runtime information as outputResourceRuntimeSpec Configure runtime on a PersistentResource instance, including but may not limited to: * Service accounts used to run the workloads; * Whether make it a dedicated Ray Cluster;ResourceRuntimeSpec.Builder Configure runtime on a PersistentResource instance, including but may not limited to: * Service accounts used to run the workloads; * Whether make it a dedicated Ray Cluster;ResourcesConsumed Statistics information about resource consumption.ResourcesConsumed.Builder Statistics information about resource consumption.RestoreDatasetVersionOperationMetadata Runtime operation information for [DatasetService.RestoreDatasetVersion][google.cloud.aiplatform.v1beta1.DatasetService.RestoreDatasetVersion].RestoreDatasetVersionOperationMetadata.Builder Runtime operation information for [DatasetService.RestoreDatasetVersion][google.cloud.aiplatform.v1beta1.DatasetService.RestoreDatasetVersion].ResumeModelDeploymentMonitoringJobRequest Request message for [JobService.ResumeModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.ResumeModelDeploymentMonitoringJob].ResumeModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.ResumeModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.ResumeModelDeploymentMonitoringJob].ResumeScheduleRequest Request message for [ScheduleService.ResumeSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.ResumeSchedule].ResumeScheduleRequest.Builder Request message for [ScheduleService.ResumeSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.ResumeSchedule].SampleConfig Active learning data sampling config.SampleConfig.Builder Active learning data sampling config.SampledShapleyAttribution An attribution method that approximates Shapley values for features that contribute to the label being predicted.SampledShapleyAttribution.Builder An attribution method that approximates Shapley values for features that contribute to the label being predicted.SamplingStrategy Sampling Strategy for logging, can be for both training and prediction dataset.SamplingStrategy.Builder Sampling Strategy for logging, can be for both training and prediction dataset.SamplingStrategy.RandomSampleConfig Requests are randomly selected.SamplingStrategy.RandomSampleConfig.Builder Requests are randomly selected.SavedQuery A SavedQuery is a view of the dataset.SavedQuery.Builder A SavedQuery is a view of the dataset.SavedQueryName SavedQueryName.Builder Builder for projects/{project}/locations/{location}/datasets/{dataset}/savedQueries/{saved_query}.SavedQueryProto Scalar One point viewable on a scalar metric plot.Scalar.Builder One point viewable on a scalar metric plot.Schedule An instance of a Schedule periodically schedules runs to make API calls based on user specified time specification and API request type.Schedule.Builder An instance of a Schedule periodically schedules runs to make API calls based on user specified time specification and API request type.Schedule.RunResponse Status of a scheduled run.Schedule.RunResponse.Builder Status of a scheduled run.ScheduleName ScheduleName.Builder Builder for projects/{project}/locations/{location}/schedules/{schedule}.ScheduleProto ScheduleServiceClient Service Description: A service for creating and managing Vertex AI's Schedule resources to periodically launch shceudled runs to make API calls.ScheduleServiceClient.ListLocationsFixedSizeCollection ScheduleServiceClient.ListLocationsPage ScheduleServiceClient.ListLocationsPagedResponse ScheduleServiceClient.ListSchedulesFixedSizeCollection ScheduleServiceClient.ListSchedulesPage ScheduleServiceClient.ListSchedulesPagedResponse ScheduleServiceGrpc A service for creating and managing Vertex AI's Schedule resources to periodically launch shceudled runs to make API calls.ScheduleServiceGrpc.ScheduleServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service ScheduleService.ScheduleServiceGrpc.ScheduleServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service ScheduleService.ScheduleServiceGrpc.ScheduleServiceImplBase Base class for the server implementation of the service ScheduleService.ScheduleServiceGrpc.ScheduleServiceStub A stub to allow clients to do asynchronous rpc calls to service ScheduleService.ScheduleServiceProto ScheduleServiceSettings Settings class to configure an instance ofScheduleServiceClient
.ScheduleServiceSettings.Builder Builder for ScheduleServiceSettings.Scheduling All parameters related to queuing and scheduling of custom jobs.Scheduling.Builder All parameters related to queuing and scheduling of custom jobs.SearchDataItemsRequest Request message for [DatasetService.SearchDataItems][google.cloud.aiplatform.v1beta1.DatasetService.SearchDataItems].SearchDataItemsRequest.Builder Request message for [DatasetService.SearchDataItems][google.cloud.aiplatform.v1beta1.DatasetService.SearchDataItems].SearchDataItemsRequest.OrderByAnnotation Expression that allows ranking results based on annotation's property.SearchDataItemsRequest.OrderByAnnotation.Builder Expression that allows ranking results based on annotation's property.SearchDataItemsResponse Response message for [DatasetService.SearchDataItems][google.cloud.aiplatform.v1beta1.DatasetService.SearchDataItems].SearchDataItemsResponse.Builder Response message for [DatasetService.SearchDataItems][google.cloud.aiplatform.v1beta1.DatasetService.SearchDataItems].SearchFeaturesRequest Request message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures].SearchFeaturesRequest.Builder Request message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures].SearchFeaturesResponse Response message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures].SearchFeaturesResponse.Builder Response message for [FeaturestoreService.SearchFeatures][google.cloud.aiplatform.v1beta1.FeaturestoreService.SearchFeatures].SearchMigratableResourcesRequest Request message for [MigrationService.SearchMigratableResources][google.cloud.aiplatform.v1beta1.MigrationService.SearchMigratableResources].SearchMigratableResourcesRequest.Builder Request message for [MigrationService.SearchMigratableResources][google.cloud.aiplatform.v1beta1.MigrationService.SearchMigratableResources].SearchMigratableResourcesResponse Response message for [MigrationService.SearchMigratableResources][google.cloud.aiplatform.v1beta1.MigrationService.SearchMigratableResources].SearchMigratableResourcesResponse.Builder Response message for [MigrationService.SearchMigratableResources][google.cloud.aiplatform.v1beta1.MigrationService.SearchMigratableResources].SearchModelDeploymentMonitoringStatsAnomaliesRequest Request message for [JobService.SearchModelDeploymentMonitoringStatsAnomalies][google.cloud.aiplatform.v1beta1.JobService.SearchModelDeploymentMonitoringStatsAnomalies].SearchModelDeploymentMonitoringStatsAnomaliesRequest.Builder Request message for [JobService.SearchModelDeploymentMonitoringStatsAnomalies][google.cloud.aiplatform.v1beta1.JobService.SearchModelDeploymentMonitoringStatsAnomalies].SearchModelDeploymentMonitoringStatsAnomaliesRequest.StatsAnomaliesObjective Stats requested for specific objective.SearchModelDeploymentMonitoringStatsAnomaliesRequest.StatsAnomaliesObjective.Builder Stats requested for specific objective.SearchModelDeploymentMonitoringStatsAnomaliesResponse Response message for [JobService.SearchModelDeploymentMonitoringStatsAnomalies][google.cloud.aiplatform.v1beta1.JobService.SearchModelDeploymentMonitoringStatsAnomalies].SearchModelDeploymentMonitoringStatsAnomaliesResponse.Builder Response message for [JobService.SearchModelDeploymentMonitoringStatsAnomalies][google.cloud.aiplatform.v1beta1.JobService.SearchModelDeploymentMonitoringStatsAnomalies].ServiceAccountSpec Configuration for the use of custom service account to run the workloads.ServiceAccountSpec.Builder Configuration for the use of custom service account to run the workloads.ServiceNetworkingProto SmoothGradConfig Config for SmoothGrad approximation of gradients.SmoothGradConfig.Builder Config for SmoothGrad approximation of gradients.SpecialistPool SpecialistPool represents customers' own workforce to work on their data labeling jobs.SpecialistPool.Builder SpecialistPool represents customers' own workforce to work on their data labeling jobs.SpecialistPoolName SpecialistPoolName.Builder Builder for projects/{project}/locations/{location}/specialistPools/{specialist_pool}.SpecialistPoolProto SpecialistPoolServiceClient Service Description: A service for creating and managing Customer SpecialistPools.SpecialistPoolServiceClient.ListLocationsFixedSizeCollection SpecialistPoolServiceClient.ListLocationsPage SpecialistPoolServiceClient.ListLocationsPagedResponse SpecialistPoolServiceClient.ListSpecialistPoolsFixedSizeCollection SpecialistPoolServiceClient.ListSpecialistPoolsPage SpecialistPoolServiceClient.ListSpecialistPoolsPagedResponse SpecialistPoolServiceGrpc A service for creating and managing Customer SpecialistPools.SpecialistPoolServiceGrpc.SpecialistPoolServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service SpecialistPoolService.SpecialistPoolServiceGrpc.SpecialistPoolServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service SpecialistPoolService.SpecialistPoolServiceGrpc.SpecialistPoolServiceImplBase Base class for the server implementation of the service SpecialistPoolService.SpecialistPoolServiceGrpc.SpecialistPoolServiceStub A stub to allow clients to do asynchronous rpc calls to service SpecialistPoolService.SpecialistPoolServiceProto SpecialistPoolServiceSettings Settings class to configure an instance ofSpecialistPoolServiceClient
.SpecialistPoolServiceSettings.Builder Builder for SpecialistPoolServiceSettings.StopTrialRequest Request message for [VizierService.StopTrial][google.cloud.aiplatform.v1beta1.VizierService.StopTrial].StopTrialRequest.Builder Request message for [VizierService.StopTrial][google.cloud.aiplatform.v1beta1.VizierService.StopTrial].StratifiedSplit Assigns input data to the training, validation, and test sets so that the distribution of values found in the categorical column (as specified by the `key` field) is mirrored within each split.StratifiedSplit.Builder Assigns input data to the training, validation, and test sets so that the distribution of values found in the categorical column (as specified by the `key` field) is mirrored within each split.StreamingPredictRequest Request message for [PredictionService.StreamingPredict][google.cloud.aiplatform.v1beta1.PredictionService.StreamingPredict].StreamingPredictRequest.Builder Request message for [PredictionService.StreamingPredict][google.cloud.aiplatform.v1beta1.PredictionService.StreamingPredict].StreamingPredictResponse Response message for [PredictionService.StreamingPredict][google.cloud.aiplatform.v1beta1.PredictionService.StreamingPredict].StreamingPredictResponse.Builder Response message for [PredictionService.StreamingPredict][google.cloud.aiplatform.v1beta1.PredictionService.StreamingPredict].StreamingReadFeatureValuesRequest Request message for [FeaturestoreOnlineServingService.StreamingFeatureValuesRead][].StreamingReadFeatureValuesRequest.Builder Request message for [FeaturestoreOnlineServingService.StreamingFeatureValuesRead][].StringArray A list of string values.StringArray.Builder A list of string values.Study A message representing a Study.Study.Builder A message representing a Study.StudyName StudyName.Builder Builder for projects/{project}/locations/{location}/studies/{study}.StudyProto StudySpec Represents specification of a Study.StudySpec.Builder Represents specification of a Study.StudySpec.ConvexAutomatedStoppingSpec Configuration for ConvexAutomatedStoppingSpec.StudySpec.ConvexAutomatedStoppingSpec.Builder Configuration for ConvexAutomatedStoppingSpec.StudySpec.ConvexStopConfig Deprecated. StudySpec.ConvexStopConfig.Builder Configuration for ConvexStopPolicy.StudySpec.DecayCurveAutomatedStoppingSpec The decay curve automated stopping rule builds a Gaussian Process Regressor to predict the final objective value of a Trial based on the already completed Trials and the intermediate measurements of the current Trial.StudySpec.DecayCurveAutomatedStoppingSpec.Builder The decay curve automated stopping rule builds a Gaussian Process Regressor to predict the final objective value of a Trial based on the already completed Trials and the intermediate measurements of the current Trial.StudySpec.MedianAutomatedStoppingSpec The median automated stopping rule stops a pending Trial if the Trial's best objective_value is strictly below the median 'performance' of all completed Trials reported up to the Trial's last measurement.StudySpec.MedianAutomatedStoppingSpec.Builder The median automated stopping rule stops a pending Trial if the Trial's best objective_value is strictly below the median 'performance' of all completed Trials reported up to the Trial's last measurement.StudySpec.MetricSpec Represents a metric to optimize.StudySpec.MetricSpec.Builder Represents a metric to optimize.StudySpec.MetricSpec.SafetyMetricConfig Used in safe optimization to specify threshold levels and risk tolerance.StudySpec.MetricSpec.SafetyMetricConfig.Builder Used in safe optimization to specify threshold levels and risk tolerance.StudySpec.ParameterSpec Represents a single parameter to optimize.StudySpec.ParameterSpec.Builder Represents a single parameter to optimize.StudySpec.ParameterSpec.CategoricalValueSpec Value specification for a parameter in `CATEGORICAL` type.StudySpec.ParameterSpec.CategoricalValueSpec.Builder Value specification for a parameter in `CATEGORICAL` type.StudySpec.ParameterSpec.ConditionalParameterSpec Represents a parameter spec with condition from its parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.Builder Represents a parameter spec with condition from its parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.CategoricalValueCondition Represents the spec to match categorical values from parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.CategoricalValueCondition.Builder Represents the spec to match categorical values from parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.DiscreteValueCondition Represents the spec to match discrete values from parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.DiscreteValueCondition.Builder Represents the spec to match discrete values from parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.IntValueCondition Represents the spec to match integer values from parent parameter.StudySpec.ParameterSpec.ConditionalParameterSpec.IntValueCondition.Builder Represents the spec to match integer values from parent parameter.StudySpec.ParameterSpec.DiscreteValueSpec Value specification for a parameter in `DISCRETE` type.StudySpec.ParameterSpec.DiscreteValueSpec.Builder Value specification for a parameter in `DISCRETE` type.StudySpec.ParameterSpec.DoubleValueSpec Value specification for a parameter in `DOUBLE` type.StudySpec.ParameterSpec.DoubleValueSpec.Builder Value specification for a parameter in `DOUBLE` type.StudySpec.ParameterSpec.IntegerValueSpec Value specification for a parameter in `INTEGER` type.StudySpec.ParameterSpec.IntegerValueSpec.Builder Value specification for a parameter in `INTEGER` type.StudySpec.TransferLearningConfig This contains flag for manually disabling transfer learning for a study.StudySpec.TransferLearningConfig.Builder This contains flag for manually disabling transfer learning for a study.SuggestTrialsMetadata Details of operations that perform Trials suggestion.SuggestTrialsMetadata.Builder Details of operations that perform Trials suggestion.SuggestTrialsRequest Request message for [VizierService.SuggestTrials][google.cloud.aiplatform.v1beta1.VizierService.SuggestTrials].SuggestTrialsRequest.Builder Request message for [VizierService.SuggestTrials][google.cloud.aiplatform.v1beta1.VizierService.SuggestTrials].SuggestTrialsResponse Response message for [VizierService.SuggestTrials][google.cloud.aiplatform.v1beta1.VizierService.SuggestTrials].SuggestTrialsResponse.Builder Response message for [VizierService.SuggestTrials][google.cloud.aiplatform.v1beta1.VizierService.SuggestTrials].Tensor A tensor value type.Tensor.Builder A tensor value type.Tensorboard Tensorboard is a physical database that stores users' training metrics.Tensorboard.Builder Tensorboard is a physical database that stores users' training metrics.TensorboardBlob One blob (e.g, image, graph) viewable on a blob metric plot.TensorboardBlob.Builder One blob (e.g, image, graph) viewable on a blob metric plot.TensorboardBlobSequence One point viewable on a blob metric plot, but mostly just a wrapper message to work around repeated fields can't be used directly within `oneof` fields.TensorboardBlobSequence.Builder One point viewable on a blob metric plot, but mostly just a wrapper message to work around repeated fields can't be used directly within `oneof` fields.TensorboardDataProto TensorboardExperiment A TensorboardExperiment is a group of TensorboardRuns, that are typically the results of a training job run, in a Tensorboard.TensorboardExperiment.Builder A TensorboardExperiment is a group of TensorboardRuns, that are typically the results of a training job run, in a Tensorboard.TensorboardExperimentName TensorboardExperimentName.Builder Builder for projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}.TensorboardExperimentProto TensorboardName TensorboardName.Builder Builder for projects/{project}/locations/{location}/tensorboards/{tensorboard}.TensorboardProto TensorboardRun TensorboardRun maps to a specific execution of a training job with a given set of hyperparameter values, model definition, dataset, etcTensorboardRun.Builder TensorboardRun maps to a specific execution of a training job with a given set of hyperparameter values, model definition, dataset, etcTensorboardRunName TensorboardRunName.Builder Builder for projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}.TensorboardRunProto TensorboardServiceClient Service Description: TensorboardServiceTensorboardServiceClient.ExportTensorboardTimeSeriesDataFixedSizeCollection TensorboardServiceClient.ExportTensorboardTimeSeriesDataPage TensorboardServiceClient.ExportTensorboardTimeSeriesDataPagedResponse TensorboardServiceClient.ListLocationsFixedSizeCollection TensorboardServiceClient.ListLocationsPage TensorboardServiceClient.ListLocationsPagedResponse TensorboardServiceClient.ListTensorboardExperimentsFixedSizeCollection TensorboardServiceClient.ListTensorboardExperimentsPage TensorboardServiceClient.ListTensorboardExperimentsPagedResponse TensorboardServiceClient.ListTensorboardRunsFixedSizeCollection TensorboardServiceClient.ListTensorboardRunsPage TensorboardServiceClient.ListTensorboardRunsPagedResponse TensorboardServiceClient.ListTensorboardsFixedSizeCollection TensorboardServiceClient.ListTensorboardsPage TensorboardServiceClient.ListTensorboardsPagedResponse TensorboardServiceClient.ListTensorboardTimeSeriesFixedSizeCollection TensorboardServiceClient.ListTensorboardTimeSeriesPage TensorboardServiceClient.ListTensorboardTimeSeriesPagedResponse TensorboardServiceGrpc TensorboardServiceTensorboardServiceGrpc.TensorboardServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service TensorboardService.TensorboardServiceGrpc.TensorboardServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service TensorboardService.TensorboardServiceGrpc.TensorboardServiceImplBase Base class for the server implementation of the service TensorboardService.TensorboardServiceGrpc.TensorboardServiceStub A stub to allow clients to do asynchronous rpc calls to service TensorboardService.TensorboardServiceProto TensorboardServiceSettings Settings class to configure an instance ofTensorboardServiceClient
.TensorboardServiceSettings.Builder Builder for TensorboardServiceSettings.TensorboardTensor One point viewable on a tensor metric plot.TensorboardTensor.Builder One point viewable on a tensor metric plot.TensorboardTimeSeries TensorboardTimeSeries maps to times series produced in training runsTensorboardTimeSeries.Builder TensorboardTimeSeries maps to times series produced in training runsTensorboardTimeSeries.Metadata Describes metadata for a TensorboardTimeSeries.TensorboardTimeSeries.Metadata.Builder Describes metadata for a TensorboardTimeSeries.TensorboardTimeSeriesName TensorboardTimeSeriesName.Builder Builder for projects/{project}/locations/{location}/tensorboards/{tensorboard}/experiments/{experiment}/runs/{run}/timeSeries/{time_series}.TensorboardTimeSeriesProto TFRecordDestination The storage details for TFRecord output content.TFRecordDestination.Builder The storage details for TFRecord output content.ThresholdConfig The config for feature monitoring threshold.ThresholdConfig.Builder The config for feature monitoring threshold.TimeSeriesData All the data stored in a TensorboardTimeSeries.TimeSeriesData.Builder All the data stored in a TensorboardTimeSeries.TimeSeriesDataPoint A TensorboardTimeSeries data point.TimeSeriesDataPoint.Builder A TensorboardTimeSeries data point.TimestampSplit Assigns input data to training, validation, and test sets based on a provided timestamps.TimestampSplit.Builder Assigns input data to training, validation, and test sets based on a provided timestamps.TrainingConfig CMLE training config.TrainingConfig.Builder CMLE training config.TrainingPipeline The TrainingPipeline orchestrates tasks associated with training a Model.TrainingPipeline.Builder The TrainingPipeline orchestrates tasks associated with training a Model.TrainingPipelineName TrainingPipelineName.Builder Builder for projects/{project}/locations/{location}/trainingPipelines/{training_pipeline}.TrainingPipelineProto Trial A message representing a Trial.Trial.Builder A message representing a Trial.Trial.Parameter A message representing a parameter to be tuned.Trial.Parameter.Builder A message representing a parameter to be tuned.TrialContext Next ID: 3TrialContext.Builder Next ID: 3TrialName TrialName.Builder Builder for projects/{project}/locations/{location}/studies/{study}/trials/{trial}.TypesProto UndeployIndexOperationMetadata Runtime operation information for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployIndexOperationMetadata.Builder Runtime operation information for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployIndexRequest Request message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployIndexRequest.Builder Request message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployIndexResponse Response message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployIndexResponse.Builder Response message for [IndexEndpointService.UndeployIndex][google.cloud.aiplatform.v1beta1.IndexEndpointService.UndeployIndex].UndeployModelOperationMetadata Runtime operation information for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UndeployModelOperationMetadata.Builder Runtime operation information for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UndeployModelRequest Request message for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UndeployModelRequest.Builder Request message for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UndeployModelResponse Response message for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UndeployModelResponse.Builder Response message for [EndpointService.UndeployModel][google.cloud.aiplatform.v1beta1.EndpointService.UndeployModel].UnmanagedContainerModel Contains model information necessary to perform batch prediction without requiring a full model import.UnmanagedContainerModel.Builder Contains model information necessary to perform batch prediction without requiring a full model import.UnmanagedContainerModelProto UpdateArtifactRequest Request message for [MetadataService.UpdateArtifact][google.cloud.aiplatform.v1beta1.MetadataService.UpdateArtifact].UpdateArtifactRequest.Builder Request message for [MetadataService.UpdateArtifact][google.cloud.aiplatform.v1beta1.MetadataService.UpdateArtifact].UpdateContextRequest Request message for [MetadataService.UpdateContext][google.cloud.aiplatform.v1beta1.MetadataService.UpdateContext].UpdateContextRequest.Builder Request message for [MetadataService.UpdateContext][google.cloud.aiplatform.v1beta1.MetadataService.UpdateContext].UpdateDatasetRequest Request message for [DatasetService.UpdateDataset][google.cloud.aiplatform.v1beta1.DatasetService.UpdateDataset].UpdateDatasetRequest.Builder Request message for [DatasetService.UpdateDataset][google.cloud.aiplatform.v1beta1.DatasetService.UpdateDataset].UpdateDeploymentResourcePoolOperationMetadata Runtime operation information for UpdateDeploymentResourcePool method.UpdateDeploymentResourcePoolOperationMetadata.Builder Runtime operation information for UpdateDeploymentResourcePool method.UpdateEndpointRequest Request message for [EndpointService.UpdateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.UpdateEndpoint].UpdateEndpointRequest.Builder Request message for [EndpointService.UpdateEndpoint][google.cloud.aiplatform.v1beta1.EndpointService.UpdateEndpoint].UpdateEntityTypeRequest Request message for [FeaturestoreService.UpdateEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateEntityType].UpdateEntityTypeRequest.Builder Request message for [FeaturestoreService.UpdateEntityType][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateEntityType].UpdateExecutionRequest Request message for [MetadataService.UpdateExecution][google.cloud.aiplatform.v1beta1.MetadataService.UpdateExecution].UpdateExecutionRequest.Builder Request message for [MetadataService.UpdateExecution][google.cloud.aiplatform.v1beta1.MetadataService.UpdateExecution].UpdateExplanationDatasetOperationMetadata Runtime operation information for [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset].UpdateExplanationDatasetOperationMetadata.Builder Runtime operation information for [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset].UpdateExplanationDatasetRequest Request message for [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset].UpdateExplanationDatasetRequest.Builder Request message for [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset].UpdateExplanationDatasetResponse Response message of [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset] operation.UpdateExplanationDatasetResponse.Builder Response message of [ModelService.UpdateExplanationDataset][google.cloud.aiplatform.v1beta1.ModelService.UpdateExplanationDataset] operation.UpdateFeatureRequest Request message for [FeaturestoreService.UpdateFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateFeature].UpdateFeatureRequest.Builder Request message for [FeaturestoreService.UpdateFeature][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateFeature].UpdateFeaturestoreOperationMetadata Details of operations that perform update Featurestore.UpdateFeaturestoreOperationMetadata.Builder Details of operations that perform update Featurestore.UpdateFeaturestoreRequest Request message for [FeaturestoreService.UpdateFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateFeaturestore].UpdateFeaturestoreRequest.Builder Request message for [FeaturestoreService.UpdateFeaturestore][google.cloud.aiplatform.v1beta1.FeaturestoreService.UpdateFeaturestore].UpdateIndexEndpointRequest Request message for [IndexEndpointService.UpdateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.UpdateIndexEndpoint].UpdateIndexEndpointRequest.Builder Request message for [IndexEndpointService.UpdateIndexEndpoint][google.cloud.aiplatform.v1beta1.IndexEndpointService.UpdateIndexEndpoint].UpdateIndexOperationMetadata Runtime operation information for [IndexService.UpdateIndex][google.cloud.aiplatform.v1beta1.IndexService.UpdateIndex].UpdateIndexOperationMetadata.Builder Runtime operation information for [IndexService.UpdateIndex][google.cloud.aiplatform.v1beta1.IndexService.UpdateIndex].UpdateIndexRequest Request message for [IndexService.UpdateIndex][google.cloud.aiplatform.v1beta1.IndexService.UpdateIndex].UpdateIndexRequest.Builder Request message for [IndexService.UpdateIndex][google.cloud.aiplatform.v1beta1.IndexService.UpdateIndex].UpdateModelDeploymentMonitoringJobOperationMetadata Runtime operation information for [JobService.UpdateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.UpdateModelDeploymentMonitoringJob].UpdateModelDeploymentMonitoringJobOperationMetadata.Builder Runtime operation information for [JobService.UpdateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.UpdateModelDeploymentMonitoringJob].UpdateModelDeploymentMonitoringJobRequest Request message for [JobService.UpdateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.UpdateModelDeploymentMonitoringJob].UpdateModelDeploymentMonitoringJobRequest.Builder Request message for [JobService.UpdateModelDeploymentMonitoringJob][google.cloud.aiplatform.v1beta1.JobService.UpdateModelDeploymentMonitoringJob].UpdateModelRequest Request message for [ModelService.UpdateModel][google.cloud.aiplatform.v1beta1.ModelService.UpdateModel].UpdateModelRequest.Builder Request message for [ModelService.UpdateModel][google.cloud.aiplatform.v1beta1.ModelService.UpdateModel].UpdatePersistentResourceOperationMetadata Details of operations that perform update PersistentResource.UpdatePersistentResourceOperationMetadata.Builder Details of operations that perform update PersistentResource.UpdatePersistentResourceRequest Request message for UpdatePersistentResource method.UpdatePersistentResourceRequest.Builder Request message for UpdatePersistentResource method.UpdateScheduleRequest Request message for [ScheduleService.UpdateSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.UpdateSchedule].UpdateScheduleRequest.Builder Request message for [ScheduleService.UpdateSchedule][google.cloud.aiplatform.v1beta1.ScheduleService.UpdateSchedule].UpdateSpecialistPoolOperationMetadata Runtime operation metadata for [SpecialistPoolService.UpdateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.UpdateSpecialistPool].UpdateSpecialistPoolOperationMetadata.Builder Runtime operation metadata for [SpecialistPoolService.UpdateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.UpdateSpecialistPool].UpdateSpecialistPoolRequest Request message for [SpecialistPoolService.UpdateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.UpdateSpecialistPool].UpdateSpecialistPoolRequest.Builder Request message for [SpecialistPoolService.UpdateSpecialistPool][google.cloud.aiplatform.v1beta1.SpecialistPoolService.UpdateSpecialistPool].UpdateTensorboardExperimentRequest Request message for [TensorboardService.UpdateTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardExperiment].UpdateTensorboardExperimentRequest.Builder Request message for [TensorboardService.UpdateTensorboardExperiment][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardExperiment].UpdateTensorboardOperationMetadata Details of operations that perform update Tensorboard.UpdateTensorboardOperationMetadata.Builder Details of operations that perform update Tensorboard.UpdateTensorboardRequest Request message for [TensorboardService.UpdateTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboard].UpdateTensorboardRequest.Builder Request message for [TensorboardService.UpdateTensorboard][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboard].UpdateTensorboardRunRequest Request message for [TensorboardService.UpdateTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardRun].UpdateTensorboardRunRequest.Builder Request message for [TensorboardService.UpdateTensorboardRun][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardRun].UpdateTensorboardTimeSeriesRequest Request message for [TensorboardService.UpdateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardTimeSeries].UpdateTensorboardTimeSeriesRequest.Builder Request message for [TensorboardService.UpdateTensorboardTimeSeries][google.cloud.aiplatform.v1beta1.TensorboardService.UpdateTensorboardTimeSeries].UploadModelOperationMetadata Details of [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel] operation.UploadModelOperationMetadata.Builder Details of [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel] operation.UploadModelRequest Request message for [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel].UploadModelRequest.Builder Request message for [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel].UploadModelResponse Response message of [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel] operation.UploadModelResponse.Builder Response message of [ModelService.UploadModel][google.cloud.aiplatform.v1beta1.ModelService.UploadModel] operation.UpsertDatapointsRequest Request message for [IndexService.UpsertDatapoints][google.cloud.aiplatform.v1beta1.IndexService.UpsertDatapoints]UpsertDatapointsRequest.Builder Request message for [IndexService.UpsertDatapoints][google.cloud.aiplatform.v1beta1.IndexService.UpsertDatapoints]UpsertDatapointsResponse Response message for [IndexService.UpsertDatapoints][google.cloud.aiplatform.v1beta1.IndexService.UpsertDatapoints]UpsertDatapointsResponse.Builder Response message for [IndexService.UpsertDatapoints][google.cloud.aiplatform.v1beta1.IndexService.UpsertDatapoints]UserActionReference References an API call.UserActionReference.Builder References an API call.UserActionReferenceProto Value Value is the value of the field.Value.Builder Value is the value of the field.ValueProto VizierServiceClient Service Description: Vertex AI Vizier API.VizierServiceClient.ListLocationsFixedSizeCollection VizierServiceClient.ListLocationsPage VizierServiceClient.ListLocationsPagedResponse VizierServiceClient.ListStudiesFixedSizeCollection VizierServiceClient.ListStudiesPage VizierServiceClient.ListStudiesPagedResponse VizierServiceClient.ListTrialsFixedSizeCollection VizierServiceClient.ListTrialsPage VizierServiceClient.ListTrialsPagedResponse VizierServiceGrpc Vertex AI Vizier API.VizierServiceGrpc.VizierServiceBlockingStub A stub to allow clients to do synchronous rpc calls to service VizierService.VizierServiceGrpc.VizierServiceFutureStub A stub to allow clients to do ListenableFuture-style rpc calls to service VizierService.VizierServiceGrpc.VizierServiceImplBase Base class for the server implementation of the service VizierService.VizierServiceGrpc.VizierServiceStub A stub to allow clients to do asynchronous rpc calls to service VizierService.VizierServiceProto VizierServiceSettings Settings class to configure an instance ofVizierServiceClient
.VizierServiceSettings.Builder Builder for VizierServiceSettings.WorkerPoolSpec Represents the spec of a worker pool in a job.WorkerPoolSpec.Builder Represents the spec of a worker pool in a job.WriteFeatureValuesPayload Contains Feature values to be written for a specific entity.WriteFeatureValuesPayload.Builder Contains Feature values to be written for a specific entity.WriteFeatureValuesRequest Request message for [FeaturestoreOnlineServingService.WriteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.WriteFeatureValues].WriteFeatureValuesRequest.Builder Request message for [FeaturestoreOnlineServingService.WriteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.WriteFeatureValues].WriteFeatureValuesResponse Response message for [FeaturestoreOnlineServingService.WriteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.WriteFeatureValues].WriteFeatureValuesResponse.Builder Response message for [FeaturestoreOnlineServingService.WriteFeatureValues][google.cloud.aiplatform.v1beta1.FeaturestoreOnlineServingService.WriteFeatureValues].WriteTensorboardExperimentDataRequest Request message for [TensorboardService.WriteTensorboardExperimentData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardExperimentData].WriteTensorboardExperimentDataRequest.Builder Request message for [TensorboardService.WriteTensorboardExperimentData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardExperimentData].WriteTensorboardExperimentDataResponse Response message for [TensorboardService.WriteTensorboardExperimentData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardExperimentData].WriteTensorboardExperimentDataResponse.Builder Response message for [TensorboardService.WriteTensorboardExperimentData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardExperimentData].WriteTensorboardRunDataRequest Request message for [TensorboardService.WriteTensorboardRunData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardRunData].WriteTensorboardRunDataRequest.Builder Request message for [TensorboardService.WriteTensorboardRunData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardRunData].WriteTensorboardRunDataResponse Response message for [TensorboardService.WriteTensorboardRunData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardRunData].WriteTensorboardRunDataResponse.Builder Response message for [TensorboardService.WriteTensorboardRunData][google.cloud.aiplatform.v1beta1.TensorboardService.WriteTensorboardRunData].XraiAttribution An explanation method that redistributes Integrated Gradients attributions to segmented regions, taking advantage of the model's fully differentiable structure.XraiAttribution.Builder An explanation method that redistributes Integrated Gradients attributions to segmented regions, taking advantage of the model's fully differentiable structure.