Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sdk/policy/mgmt-v2019_09_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-policy</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
*/
Expand All @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The ParameterValuesValue model.
* The value of a parameter.
*/
public class ParameterValuesValue {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down