Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 148fcb1

Browse filesBrowse files
feat: [aiplatform] add model_monitoring_stats_anomalies,model_monitoring_status to BatchPredictionJob in aiplatform v1beta1 batch_prediction_job.proto (#8242)
* feat: add model_monitoring_stats_anomalies,model_monitoring_status to BatchPredictionJob in aiplatform v1beta1 batch_prediction_job.proto PiperOrigin-RevId: 470845818 Source-Link: googleapis/googleapis@284389e Source-Link: https://github.com/googleapis/googleapis-gen/commit/29deb79b04aea169a568e7c544868243d5161dde Copy-Tag: eyJwIjoiamF2YS1haXBsYXRmb3JtLy5Pd2xCb3QueWFtbCIsImgiOiIyOWRlYjc5YjA0YWVhMTY5YTU2OGU3YzU0NDg2ODI0M2Q1MTYxZGRlIn0= * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent b35f4fc commit 148fcb1
Copy full SHA for 148fcb1

File tree

5 files changed

+1076
-73
lines changed
Filter options

5 files changed

+1076
-73
lines changed

‎java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java

Copy file name to clipboardExpand all lines: java-aiplatform/google-cloud-aiplatform/src/test/java/com/google/cloud/aiplatform/v1beta1/JobServiceClientTest.java
+8Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1567,6 +1567,8 @@ public void createBatchPredictionJobTest() throws Exception {
15671567
.putAllLabels(new HashMap<String, String>())
15681568
.setEncryptionSpec(EncryptionSpec.newBuilder().build())
15691569
.setModelMonitoringConfig(ModelMonitoringConfig.newBuilder().build())
1570+
.addAllModelMonitoringStatsAnomalies(new ArrayList<ModelMonitoringStatsAnomalies>())
1571+
.setModelMonitoringStatus(Status.newBuilder().build())
15701572
.build();
15711573
mockJobService.addResponse(expectedResponse);
15721574

@@ -1636,6 +1638,8 @@ public void createBatchPredictionJobTest2() throws Exception {
16361638
.putAllLabels(new HashMap<String, String>())
16371639
.setEncryptionSpec(EncryptionSpec.newBuilder().build())
16381640
.setModelMonitoringConfig(ModelMonitoringConfig.newBuilder().build())
1641+
.addAllModelMonitoringStatsAnomalies(new ArrayList<ModelMonitoringStatsAnomalies>())
1642+
.setModelMonitoringStatus(Status.newBuilder().build())
16391643
.build();
16401644
mockJobService.addResponse(expectedResponse);
16411645

@@ -1705,6 +1709,8 @@ public void getBatchPredictionJobTest() throws Exception {
17051709
.putAllLabels(new HashMap<String, String>())
17061710
.setEncryptionSpec(EncryptionSpec.newBuilder().build())
17071711
.setModelMonitoringConfig(ModelMonitoringConfig.newBuilder().build())
1712+
.addAllModelMonitoringStatsAnomalies(new ArrayList<ModelMonitoringStatsAnomalies>())
1713+
.setModelMonitoringStatus(Status.newBuilder().build())
17081714
.build();
17091715
mockJobService.addResponse(expectedResponse);
17101716

@@ -1773,6 +1779,8 @@ public void getBatchPredictionJobTest2() throws Exception {
17731779
.putAllLabels(new HashMap<String, String>())
17741780
.setEncryptionSpec(EncryptionSpec.newBuilder().build())
17751781
.setModelMonitoringConfig(ModelMonitoringConfig.newBuilder().build())
1782+
.addAllModelMonitoringStatsAnomalies(new ArrayList<ModelMonitoringStatsAnomalies>())
1783+
.setModelMonitoringStatus(Status.newBuilder().build())
17761784
.build();
17771785
mockJobService.addResponse(expectedResponse);
17781786

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.