Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR sdk/netapp/mgmt-v2019_11_01] Anf 7051 2020 03 01 api version swagger linting issues kpi #3898

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
6 changes: 3 additions & 3 deletions sdk/netapp/mgmt-v2019_11_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.3.0</version>
<relativePath>../../parents/azure-arm-parent/pom.xml</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-netapp</artifactId>
<version>1.0.0-beta-2</version>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for NetApp Management</name>
<description>This package contains Microsoft NetApp Management SDK.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ public class ReplicationObject {
private EndpointType endpointType;

/**
* Schedule. Possible values include: '_10minutely', 'hourly', 'daily',
* 'weekly', 'monthly'.
* Schedule. Possible values include: '_10minutely', 'hourly', 'daily'.
*/
@JsonProperty(value = "replicationSchedule", required = true)
private ReplicationSchedule replicationSchedule;
Expand Down Expand Up @@ -87,7 +86,7 @@ public ReplicationObject withEndpointType(EndpointType endpointType) {
}

/**
* Get schedule. Possible values include: '_10minutely', 'hourly', 'daily', 'weekly', 'monthly'.
* Get schedule. Possible values include: '_10minutely', 'hourly', 'daily'.
*
* @return the replicationSchedule value
*/
Expand All @@ -96,7 +95,7 @@ public ReplicationSchedule replicationSchedule() {
}

/**
* Set schedule. Possible values include: '_10minutely', 'hourly', 'daily', 'weekly', 'monthly'.
* Set schedule. Possible values include: '_10minutely', 'hourly', 'daily'.
*
* @param replicationSchedule the replicationSchedule value to set
* @return the ReplicationObject object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ public final class ReplicationSchedule extends ExpandableStringEnum<ReplicationS
/** Static value daily for ReplicationSchedule. */
public static final ReplicationSchedule DAILY = fromString("daily");

/** Static value weekly for ReplicationSchedule. */
public static final ReplicationSchedule WEEKLY = fromString("weekly");

/** Static value monthly for ReplicationSchedule. */
public static final ReplicationSchedule MONTHLY = fromString("monthly");

/**
* Creates or finds a ReplicationSchedule from its string representation.
* @param name a name to look for
Expand Down