|
18 | 18 | from .services.dataset_service import DatasetServiceAsyncClient |
19 | 19 | from .services.endpoint_service import EndpointServiceClient |
20 | 20 | from .services.endpoint_service import EndpointServiceAsyncClient |
| 21 | +from .services.index_endpoint_service import IndexEndpointServiceClient |
| 22 | +from .services.index_endpoint_service import IndexEndpointServiceAsyncClient |
| 23 | +from .services.index_service import IndexServiceClient |
| 24 | +from .services.index_service import IndexServiceAsyncClient |
21 | 25 | from .services.job_service import JobServiceClient |
22 | 26 | from .services.job_service import JobServiceAsyncClient |
23 | 27 | from .services.migration_service import MigrationServiceClient |
|
70 | 74 | from .types.dataset_service import ListDatasetsRequest |
71 | 75 | from .types.dataset_service import ListDatasetsResponse |
72 | 76 | from .types.dataset_service import UpdateDatasetRequest |
| 77 | +from .types.deployed_index_ref import DeployedIndexRef |
73 | 78 | from .types.deployed_model_ref import DeployedModelRef |
74 | 79 | from .types.encryption_spec import EncryptionSpec |
75 | 80 | from .types.endpoint import DeployedModel |
|
89 | 94 | from .types.endpoint_service import UpdateEndpointRequest |
90 | 95 | from .types.env_var import EnvVar |
91 | 96 | from .types.execution import Execution |
| 97 | +from .types.explanation import Attribution |
| 98 | +from .types.explanation import Explanation |
| 99 | +from .types.explanation import ExplanationMetadataOverride |
| 100 | +from .types.explanation import ExplanationParameters |
| 101 | +from .types.explanation import ExplanationSpec |
| 102 | +from .types.explanation import ExplanationSpecOverride |
| 103 | +from .types.explanation import FeatureNoiseSigma |
| 104 | +from .types.explanation import IntegratedGradientsAttribution |
| 105 | +from .types.explanation import ModelExplanation |
| 106 | +from .types.explanation import SampledShapleyAttribution |
| 107 | +from .types.explanation import SmoothGradConfig |
| 108 | +from .types.explanation import XraiAttribution |
| 109 | +from .types.explanation_metadata import ExplanationMetadata |
| 110 | +from .types.feature_monitoring_stats import FeatureStatsAnomaly |
92 | 111 | from .types.hyperparameter_tuning_job import HyperparameterTuningJob |
| 112 | +from .types.index import Index |
| 113 | +from .types.index_endpoint import DeployedIndex |
| 114 | +from .types.index_endpoint import DeployedIndexAuthConfig |
| 115 | +from .types.index_endpoint import IndexEndpoint |
| 116 | +from .types.index_endpoint import IndexPrivateEndpoints |
| 117 | +from .types.index_endpoint_service import CreateIndexEndpointOperationMetadata |
| 118 | +from .types.index_endpoint_service import CreateIndexEndpointRequest |
| 119 | +from .types.index_endpoint_service import DeleteIndexEndpointRequest |
| 120 | +from .types.index_endpoint_service import DeployIndexOperationMetadata |
| 121 | +from .types.index_endpoint_service import DeployIndexRequest |
| 122 | +from .types.index_endpoint_service import DeployIndexResponse |
| 123 | +from .types.index_endpoint_service import GetIndexEndpointRequest |
| 124 | +from .types.index_endpoint_service import ListIndexEndpointsRequest |
| 125 | +from .types.index_endpoint_service import ListIndexEndpointsResponse |
| 126 | +from .types.index_endpoint_service import UndeployIndexOperationMetadata |
| 127 | +from .types.index_endpoint_service import UndeployIndexRequest |
| 128 | +from .types.index_endpoint_service import UndeployIndexResponse |
| 129 | +from .types.index_endpoint_service import UpdateIndexEndpointRequest |
| 130 | +from .types.index_service import CreateIndexOperationMetadata |
| 131 | +from .types.index_service import CreateIndexRequest |
| 132 | +from .types.index_service import DeleteIndexRequest |
| 133 | +from .types.index_service import GetIndexRequest |
| 134 | +from .types.index_service import ListIndexesRequest |
| 135 | +from .types.index_service import ListIndexesResponse |
| 136 | +from .types.index_service import NearestNeighborSearchOperationMetadata |
| 137 | +from .types.index_service import UpdateIndexOperationMetadata |
| 138 | +from .types.index_service import UpdateIndexRequest |
93 | 139 | from .types.io import BigQueryDestination |
94 | 140 | from .types.io import BigQuerySource |
95 | 141 | from .types.io import ContainerRegistryDestination |
|
103 | 149 | from .types.job_service import CreateCustomJobRequest |
104 | 150 | from .types.job_service import CreateDataLabelingJobRequest |
105 | 151 | from .types.job_service import CreateHyperparameterTuningJobRequest |
| 152 | +from .types.job_service import CreateModelDeploymentMonitoringJobRequest |
106 | 153 | from .types.job_service import DeleteBatchPredictionJobRequest |
107 | 154 | from .types.job_service import DeleteCustomJobRequest |
108 | 155 | from .types.job_service import DeleteDataLabelingJobRequest |
109 | 156 | from .types.job_service import DeleteHyperparameterTuningJobRequest |
| 157 | +from .types.job_service import DeleteModelDeploymentMonitoringJobRequest |
110 | 158 | from .types.job_service import GetBatchPredictionJobRequest |
111 | 159 | from .types.job_service import GetCustomJobRequest |
112 | 160 | from .types.job_service import GetDataLabelingJobRequest |
113 | 161 | from .types.job_service import GetHyperparameterTuningJobRequest |
| 162 | +from .types.job_service import GetModelDeploymentMonitoringJobRequest |
114 | 163 | from .types.job_service import ListBatchPredictionJobsRequest |
115 | 164 | from .types.job_service import ListBatchPredictionJobsResponse |
116 | 165 | from .types.job_service import ListCustomJobsRequest |
|
119 | 168 | from .types.job_service import ListDataLabelingJobsResponse |
120 | 169 | from .types.job_service import ListHyperparameterTuningJobsRequest |
121 | 170 | from .types.job_service import ListHyperparameterTuningJobsResponse |
| 171 | +from .types.job_service import ListModelDeploymentMonitoringJobsRequest |
| 172 | +from .types.job_service import ListModelDeploymentMonitoringJobsResponse |
| 173 | +from .types.job_service import PauseModelDeploymentMonitoringJobRequest |
| 174 | +from .types.job_service import ResumeModelDeploymentMonitoringJobRequest |
| 175 | +from .types.job_service import SearchModelDeploymentMonitoringStatsAnomaliesRequest |
| 176 | +from .types.job_service import SearchModelDeploymentMonitoringStatsAnomaliesResponse |
| 177 | +from .types.job_service import UpdateModelDeploymentMonitoringJobOperationMetadata |
| 178 | +from .types.job_service import UpdateModelDeploymentMonitoringJobRequest |
122 | 179 | from .types.job_state import JobState |
123 | 180 | from .types.machine_resources import AutomaticResources |
124 | 181 | from .types.machine_resources import AutoscalingMetricSpec |
|
140 | 197 | from .types.model import ModelContainerSpec |
141 | 198 | from .types.model import Port |
142 | 199 | from .types.model import PredictSchemata |
| 200 | +from .types.model_deployment_monitoring_job import ( |
| 201 | + ModelDeploymentMonitoringBigQueryTable, |
| 202 | +) |
| 203 | +from .types.model_deployment_monitoring_job import ModelDeploymentMonitoringJob |
| 204 | +from .types.model_deployment_monitoring_job import ( |
| 205 | + ModelDeploymentMonitoringObjectiveConfig, |
| 206 | +) |
| 207 | +from .types.model_deployment_monitoring_job import ( |
| 208 | + ModelDeploymentMonitoringScheduleConfig, |
| 209 | +) |
| 210 | +from .types.model_deployment_monitoring_job import ModelMonitoringStatsAnomalies |
| 211 | +from .types.model_deployment_monitoring_job import ( |
| 212 | + ModelDeploymentMonitoringObjectiveType, |
| 213 | +) |
143 | 214 | from .types.model_evaluation import ModelEvaluation |
144 | 215 | from .types.model_evaluation_slice import ModelEvaluationSlice |
| 216 | +from .types.model_monitoring import ModelMonitoringAlertConfig |
| 217 | +from .types.model_monitoring import ModelMonitoringObjectiveConfig |
| 218 | +from .types.model_monitoring import SamplingStrategy |
| 219 | +from .types.model_monitoring import ThresholdConfig |
145 | 220 | from .types.model_service import DeleteModelRequest |
146 | 221 | from .types.model_service import ExportModelOperationMetadata |
147 | 222 | from .types.model_service import ExportModelRequest |
|
178 | 253 | from .types.pipeline_service import ListTrainingPipelinesRequest |
179 | 254 | from .types.pipeline_service import ListTrainingPipelinesResponse |
180 | 255 | from .types.pipeline_state import PipelineState |
| 256 | +from .types.prediction_service import ExplainRequest |
| 257 | +from .types.prediction_service import ExplainResponse |
181 | 258 | from .types.prediction_service import PredictRequest |
182 | 259 | from .types.prediction_service import PredictResponse |
| 260 | +from .types.prediction_service import RawPredictRequest |
183 | 261 | from .types.specialist_pool import SpecialistPool |
184 | 262 | from .types.specialist_pool_service import CreateSpecialistPoolOperationMetadata |
185 | 263 | from .types.specialist_pool_service import CreateSpecialistPoolRequest |
|
190 | 268 | from .types.specialist_pool_service import UpdateSpecialistPoolOperationMetadata |
191 | 269 | from .types.specialist_pool_service import UpdateSpecialistPoolRequest |
192 | 270 | from .types.study import Measurement |
| 271 | +from .types.study import Study |
193 | 272 | from .types.study import StudySpec |
194 | 273 | from .types.study import Trial |
195 | 274 | from .types.training_pipeline import FilterSplit |
|
204 | 283 | __all__ = ( |
205 | 284 | "DatasetServiceAsyncClient", |
206 | 285 | "EndpointServiceAsyncClient", |
| 286 | + "IndexEndpointServiceAsyncClient", |
| 287 | + "IndexServiceAsyncClient", |
207 | 288 | "JobServiceAsyncClient", |
208 | 289 | "MigrationServiceAsyncClient", |
209 | 290 | "ModelServiceAsyncClient", |
|
215 | 296 | "Annotation", |
216 | 297 | "AnnotationSpec", |
217 | 298 | "Artifact", |
| 299 | + "Attribution", |
218 | 300 | "AutomaticResources", |
219 | 301 | "AutoscalingMetricSpec", |
220 | 302 | "BatchDedicatedResources", |
|
242 | 324 | "CreateEndpointOperationMetadata", |
243 | 325 | "CreateEndpointRequest", |
244 | 326 | "CreateHyperparameterTuningJobRequest", |
| 327 | + "CreateIndexEndpointOperationMetadata", |
| 328 | + "CreateIndexEndpointRequest", |
| 329 | + "CreateIndexOperationMetadata", |
| 330 | + "CreateIndexRequest", |
| 331 | + "CreateModelDeploymentMonitoringJobRequest", |
245 | 332 | "CreatePipelineJobRequest", |
246 | 333 | "CreateSpecialistPoolOperationMetadata", |
247 | 334 | "CreateSpecialistPoolRequest", |
|
259 | 346 | "DeleteDatasetRequest", |
260 | 347 | "DeleteEndpointRequest", |
261 | 348 | "DeleteHyperparameterTuningJobRequest", |
| 349 | + "DeleteIndexEndpointRequest", |
| 350 | + "DeleteIndexRequest", |
| 351 | + "DeleteModelDeploymentMonitoringJobRequest", |
262 | 352 | "DeleteModelRequest", |
263 | 353 | "DeleteOperationMetadata", |
264 | 354 | "DeletePipelineJobRequest", |
265 | 355 | "DeleteSpecialistPoolRequest", |
266 | 356 | "DeleteTrainingPipelineRequest", |
| 357 | + "DeployIndexOperationMetadata", |
| 358 | + "DeployIndexRequest", |
| 359 | + "DeployIndexResponse", |
267 | 360 | "DeployModelOperationMetadata", |
268 | 361 | "DeployModelRequest", |
269 | 362 | "DeployModelResponse", |
| 363 | + "DeployedIndex", |
| 364 | + "DeployedIndexAuthConfig", |
| 365 | + "DeployedIndexRef", |
270 | 366 | "DeployedModel", |
271 | 367 | "DeployedModelRef", |
272 | 368 | "DiskSpec", |
|
275 | 371 | "EndpointServiceClient", |
276 | 372 | "EnvVar", |
277 | 373 | "Execution", |
| 374 | + "ExplainRequest", |
| 375 | + "ExplainResponse", |
| 376 | + "Explanation", |
| 377 | + "ExplanationMetadata", |
| 378 | + "ExplanationMetadataOverride", |
| 379 | + "ExplanationParameters", |
| 380 | + "ExplanationSpec", |
| 381 | + "ExplanationSpecOverride", |
278 | 382 | "ExportDataConfig", |
279 | 383 | "ExportDataOperationMetadata", |
280 | 384 | "ExportDataRequest", |
281 | 385 | "ExportDataResponse", |
282 | 386 | "ExportModelOperationMetadata", |
283 | 387 | "ExportModelRequest", |
284 | 388 | "ExportModelResponse", |
| 389 | + "FeatureNoiseSigma", |
| 390 | + "FeatureStatsAnomaly", |
285 | 391 | "FilterSplit", |
286 | 392 | "FractionSplit", |
287 | 393 | "GcsDestination", |
|
294 | 400 | "GetDatasetRequest", |
295 | 401 | "GetEndpointRequest", |
296 | 402 | "GetHyperparameterTuningJobRequest", |
| 403 | + "GetIndexEndpointRequest", |
| 404 | + "GetIndexRequest", |
| 405 | + "GetModelDeploymentMonitoringJobRequest", |
297 | 406 | "GetModelEvaluationRequest", |
298 | 407 | "GetModelEvaluationSliceRequest", |
299 | 408 | "GetModelRequest", |
|
305 | 414 | "ImportDataOperationMetadata", |
306 | 415 | "ImportDataRequest", |
307 | 416 | "ImportDataResponse", |
| 417 | + "Index", |
| 418 | + "IndexEndpoint", |
| 419 | + "IndexEndpointServiceClient", |
| 420 | + "IndexPrivateEndpoints", |
| 421 | + "IndexServiceClient", |
308 | 422 | "InputDataConfig", |
| 423 | + "IntegratedGradientsAttribution", |
309 | 424 | "JobServiceClient", |
310 | 425 | "JobState", |
311 | 426 | "ListAnnotationsRequest", |
|
324 | 439 | "ListEndpointsResponse", |
325 | 440 | "ListHyperparameterTuningJobsRequest", |
326 | 441 | "ListHyperparameterTuningJobsResponse", |
| 442 | + "ListIndexEndpointsRequest", |
| 443 | + "ListIndexEndpointsResponse", |
| 444 | + "ListIndexesRequest", |
| 445 | + "ListIndexesResponse", |
| 446 | + "ListModelDeploymentMonitoringJobsRequest", |
| 447 | + "ListModelDeploymentMonitoringJobsResponse", |
327 | 448 | "ListModelEvaluationSlicesRequest", |
328 | 449 | "ListModelEvaluationSlicesResponse", |
329 | 450 | "ListModelEvaluationsRequest", |
|
345 | 466 | "MigrationServiceClient", |
346 | 467 | "Model", |
347 | 468 | "ModelContainerSpec", |
| 469 | + "ModelDeploymentMonitoringBigQueryTable", |
| 470 | + "ModelDeploymentMonitoringJob", |
| 471 | + "ModelDeploymentMonitoringObjectiveConfig", |
| 472 | + "ModelDeploymentMonitoringObjectiveType", |
| 473 | + "ModelDeploymentMonitoringScheduleConfig", |
348 | 474 | "ModelEvaluation", |
349 | 475 | "ModelEvaluationSlice", |
| 476 | + "ModelExplanation", |
| 477 | + "ModelMonitoringAlertConfig", |
| 478 | + "ModelMonitoringObjectiveConfig", |
| 479 | + "ModelMonitoringStatsAnomalies", |
350 | 480 | "ModelServiceClient", |
| 481 | + "NearestNeighborSearchOperationMetadata", |
| 482 | + "PauseModelDeploymentMonitoringJobRequest", |
351 | 483 | "PipelineJob", |
352 | 484 | "PipelineJobDetail", |
353 | 485 | "PipelineServiceClient", |
|
361 | 493 | "PredictSchemata", |
362 | 494 | "PredictionServiceClient", |
363 | 495 | "PythonPackageSpec", |
| 496 | + "RawPredictRequest", |
364 | 497 | "ResourcesConsumed", |
| 498 | + "ResumeModelDeploymentMonitoringJobRequest", |
365 | 499 | "SampleConfig", |
| 500 | + "SampledShapleyAttribution", |
| 501 | + "SamplingStrategy", |
366 | 502 | "Scheduling", |
367 | 503 | "SearchMigratableResourcesRequest", |
368 | 504 | "SearchMigratableResourcesResponse", |
| 505 | + "SearchModelDeploymentMonitoringStatsAnomaliesRequest", |
| 506 | + "SearchModelDeploymentMonitoringStatsAnomaliesResponse", |
| 507 | + "SmoothGradConfig", |
369 | 508 | "SpecialistPool", |
370 | 509 | "SpecialistPoolServiceClient", |
| 510 | + "Study", |
371 | 511 | "StudySpec", |
| 512 | + "ThresholdConfig", |
372 | 513 | "TimestampSplit", |
373 | 514 | "TrainingConfig", |
374 | 515 | "TrainingPipeline", |
375 | 516 | "Trial", |
| 517 | + "UndeployIndexOperationMetadata", |
| 518 | + "UndeployIndexRequest", |
| 519 | + "UndeployIndexResponse", |
376 | 520 | "UndeployModelOperationMetadata", |
377 | 521 | "UndeployModelRequest", |
378 | 522 | "UndeployModelResponse", |
379 | 523 | "UpdateDatasetRequest", |
380 | 524 | "UpdateEndpointRequest", |
| 525 | + "UpdateIndexEndpointRequest", |
| 526 | + "UpdateIndexOperationMetadata", |
| 527 | + "UpdateIndexRequest", |
| 528 | + "UpdateModelDeploymentMonitoringJobOperationMetadata", |
| 529 | + "UpdateModelDeploymentMonitoringJobRequest", |
381 | 530 | "UpdateModelRequest", |
382 | 531 | "UpdateSpecialistPoolOperationMetadata", |
383 | 532 | "UpdateSpecialistPoolRequest", |
|
387 | 536 | "UserActionReference", |
388 | 537 | "Value", |
389 | 538 | "WorkerPoolSpec", |
| 539 | + "XraiAttribution", |
390 | 540 | ) |
0 commit comments