From 64e5492ec6a1690216cacc4087e67746b83e2993 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Wed, 15 Jul 2020 02:11:45 +0000 Subject: [PATCH] Generated from 47fe478b6b258e1f94cf38c8e2226d0ce3380e87 Start enum values with uppercase like it is actually defined in RP --- .../management/cdn/v2020_04_15/ParamIndicator.java | 12 ++++++------ .../cdn/v2020_04_15/UrlSigningParamIdentifier.java | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/ParamIndicator.java b/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/ParamIndicator.java index bfa21bf17d4c..ef3fade66916 100644 --- a/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/ParamIndicator.java +++ b/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/ParamIndicator.java @@ -16,14 +16,14 @@ * Defines values for ParamIndicator. */ public final class ParamIndicator extends ExpandableStringEnum { - /** Static value expires for ParamIndicator. */ - public static final ParamIndicator EXPIRES = fromString("expires"); + /** Static value Expires for ParamIndicator. */ + public static final ParamIndicator EXPIRES = fromString("Expires"); - /** Static value keyId for ParamIndicator. */ - public static final ParamIndicator KEY_ID = fromString("keyId"); + /** Static value KeyId for ParamIndicator. */ + public static final ParamIndicator KEY_ID = fromString("KeyId"); - /** Static value signature for ParamIndicator. */ - public static final ParamIndicator SIGNATURE = fromString("signature"); + /** Static value Signature for ParamIndicator. */ + public static final ParamIndicator SIGNATURE = fromString("Signature"); /** * Creates or finds a ParamIndicator from its string representation. diff --git a/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/UrlSigningParamIdentifier.java b/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/UrlSigningParamIdentifier.java index e433d09c147c..3f081acbb52e 100644 --- a/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/UrlSigningParamIdentifier.java +++ b/sdk/cdn/mgmt-v2020_04_15/src/main/java/com/microsoft/azure/management/cdn/v2020_04_15/UrlSigningParamIdentifier.java @@ -16,7 +16,7 @@ public class UrlSigningParamIdentifier { /** * Indicates the purpose of the parameter. Possible values include: - * 'expires', 'keyId', 'signature'. + * 'Expires', 'KeyId', 'Signature'. */ @JsonProperty(value = "paramIndicator", required = true) private ParamIndicator paramIndicator; @@ -28,7 +28,7 @@ public class UrlSigningParamIdentifier { private String paramName; /** - * Get indicates the purpose of the parameter. Possible values include: 'expires', 'keyId', 'signature'. + * Get indicates the purpose of the parameter. Possible values include: 'Expires', 'KeyId', 'Signature'. * * @return the paramIndicator value */ @@ -37,7 +37,7 @@ public ParamIndicator paramIndicator() { } /** - * Set indicates the purpose of the parameter. Possible values include: 'expires', 'keyId', 'signature'. + * Set indicates the purpose of the parameter. Possible values include: 'Expires', 'KeyId', 'Signature'. * * @param paramIndicator the paramIndicator value to set * @return the UrlSigningParamIdentifier object itself.