diff --git a/sdk/policy/mgmt-v2019_09_01/pom.xml b/sdk/policy/mgmt-v2019_09_01/pom.xml
index 4ca85217ce90..e44b38b385d2 100644
--- a/sdk/policy/mgmt-v2019_09_01/pom.xml
+++ b/sdk/policy/mgmt-v2019_09_01/pom.xml
@@ -11,7 +11,7 @@
com.microsoft.azure
azure-arm-parent
- 1.2.0
+ 1.1.0
../../../pom.management.xml
azure-mgmt-policy
diff --git a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/Identity.java b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/Identity.java
index 1e0984dc94c7..b5442e52e7b6 100644
--- a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/Identity.java
+++ b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/Identity.java
@@ -27,7 +27,9 @@ public class Identity {
private String tenantId;
/**
- * The identity type. Possible values include: 'SystemAssigned', 'None'.
+ * The identity type. This is the only required field when adding a system
+ * assigned identity to a resource. Possible values include:
+ * 'SystemAssigned', 'None'.
*/
@JsonProperty(value = "type")
private ResourceIdentityType type;
@@ -51,7 +53,7 @@ public String tenantId() {
}
/**
- * Get the identity type. Possible values include: 'SystemAssigned', 'None'.
+ * Get the identity type. This is the only required field when adding a system assigned identity to a resource. Possible values include: 'SystemAssigned', 'None'.
*
* @return the type value
*/
@@ -60,7 +62,7 @@ public ResourceIdentityType type() {
}
/**
- * Set the identity type. Possible values include: 'SystemAssigned', 'None'.
+ * Set the identity type. This is the only required field when adding a system assigned identity to a resource. Possible values include: 'SystemAssigned', 'None'.
*
* @param type the type value to set
* @return the Identity object itself.
diff --git a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterDefinitionsValue.java b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterDefinitionsValue.java
index 67a78b43fb5b..36d1d78b8545 100644
--- a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterDefinitionsValue.java
+++ b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterDefinitionsValue.java
@@ -12,7 +12,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;
/**
- * The ParameterDefinitionsValue model.
+ * The definition of a parameter that can be provided to the policy.
*/
public class ParameterDefinitionsValue {
/**
diff --git a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterValuesValue.java b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterValuesValue.java
index 65d639c31961..982146203218 100644
--- a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterValuesValue.java
+++ b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ParameterValuesValue.java
@@ -11,7 +11,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;
/**
- * The ParameterValuesValue model.
+ * The value of a parameter.
*/
public class ParameterValuesValue {
/**
diff --git a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ResourceIdentityType.java b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ResourceIdentityType.java
index a7ebe329f66e..4629ba230bcb 100644
--- a/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ResourceIdentityType.java
+++ b/sdk/policy/mgmt-v2019_09_01/src/main/java/com/microsoft/azure/management/policy/v2019_09_01/ResourceIdentityType.java
@@ -15,10 +15,10 @@
* Defines values for ResourceIdentityType.
*/
public enum ResourceIdentityType {
- /** Enum value SystemAssigned. */
+ /** Indicates that a system assigned identity is associated with the resource. */
SYSTEM_ASSIGNED("SystemAssigned"),
- /** Enum value None. */
+ /** Indicates that no identity is associated with the resource or that the existing identity should be removed. */
NONE("None");
/** The actual serialized value for a ResourceIdentityType instance. */