From 43c5a21f9bf8d4f4105a67dbd2f5a4e748289ff1 Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Wed, 27 Jun 2018 23:24:24 +0000 Subject: [PATCH] Generated from de6b3a1607eaca8bef4a23e3323ad6352d4a9a5f Fix list builds odata query --- .../v2018_02_01_preview/BuildFilter.java | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/containerregistry/resource-manager/v2018_02_01_preview/src/main/java/com/microsoft/azure/management/containerregistry/v2018_02_01_preview/BuildFilter.java b/containerregistry/resource-manager/v2018_02_01_preview/src/main/java/com/microsoft/azure/management/containerregistry/v2018_02_01_preview/BuildFilter.java index ab5e2076e2a5..564a96e6186f 100644 --- a/containerregistry/resource-manager/v2018_02_01_preview/src/main/java/com/microsoft/azure/management/containerregistry/v2018_02_01_preview/BuildFilter.java +++ b/containerregistry/resource-manager/v2018_02_01_preview/src/main/java/com/microsoft/azure/management/containerregistry/v2018_02_01_preview/BuildFilter.java @@ -9,7 +9,6 @@ package com.microsoft.azure.management.containerregistry.v2018_02_01_preview; import org.joda.time.DateTime; -import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; /** @@ -49,10 +48,11 @@ public class BuildFilter { private DateTime finishTime; /** - * The list of all images that were generated from the build. + * The list of comma-separated image manifests that were generated from the + * build. */ - @JsonProperty(value = "outputImageNames") - private List outputImageNames; + @JsonProperty(value = "outputImageManifests") + private String outputImageManifests; /** * The value that indicates whether archiving is enabled or not. @@ -167,22 +167,22 @@ public BuildFilter withFinishTime(DateTime finishTime) { } /** - * Get the list of all images that were generated from the build. + * Get the list of comma-separated image manifests that were generated from the build. * - * @return the outputImageNames value + * @return the outputImageManifests value */ - public List outputImageNames() { - return this.outputImageNames; + public String outputImageManifests() { + return this.outputImageManifests; } /** - * Set the list of all images that were generated from the build. + * Set the list of comma-separated image manifests that were generated from the build. * - * @param outputImageNames the outputImageNames value to set + * @param outputImageManifests the outputImageManifests value to set * @return the BuildFilter object itself. */ - public BuildFilter withOutputImageNames(List outputImageNames) { - this.outputImageNames = outputImageNames; + public BuildFilter withOutputImageManifests(String outputImageManifests) { + this.outputImageManifests = outputImageManifests; return this; }