diff --git a/services/netapp/mgmt/2020-06-01/netapp/enums.go b/services/netapp/mgmt/2020-06-01/netapp/enums.go index 3993b50154d3..e9c6a3a994d0 100644 --- a/services/netapp/mgmt/2020-06-01/netapp/enums.go +++ b/services/netapp/mgmt/2020-06-01/netapp/enums.go @@ -163,15 +163,11 @@ const ( Daily ReplicationSchedule = "daily" // Hourly ... Hourly ReplicationSchedule = "hourly" - // Monthly ... - Monthly ReplicationSchedule = "monthly" - // Weekly ... - Weekly ReplicationSchedule = "weekly" ) // PossibleReplicationScheduleValues returns an array of possible values for the ReplicationSchedule const type. func PossibleReplicationScheduleValues() []ReplicationSchedule { - return []ReplicationSchedule{OneZerominutely, Daily, Hourly, Monthly, Weekly} + return []ReplicationSchedule{OneZerominutely, Daily, Hourly} } // SecurityStyle enumerates the values for security style. diff --git a/services/netapp/mgmt/2020-06-01/netapp/models.go b/services/netapp/mgmt/2020-06-01/netapp/models.go index e4fec81e7cce..db77ecdba0e9 100644 --- a/services/netapp/mgmt/2020-06-01/netapp/models.go +++ b/services/netapp/mgmt/2020-06-01/netapp/models.go @@ -1714,7 +1714,7 @@ type ReplicationObject struct { ReplicationID *string `json:"replicationId,omitempty"` // EndpointType - Indicates whether the local volume is the source or destination for the Volume Replication. Possible values include: 'Src', 'Dst' EndpointType EndpointType `json:"endpointType,omitempty"` - // ReplicationSchedule - Schedule. Possible values include: '10minutely', 'Hourly', 'Daily', 'Weekly', 'Monthly' + // ReplicationSchedule - Schedule. Possible values include: '10minutely', 'Hourly', 'Daily' ReplicationSchedule ReplicationSchedule `json:"replicationSchedule,omitempty"` // RemoteVolumeResourceID - The resource ID of the remote volume. RemoteVolumeResourceID *string `json:"remoteVolumeResourceId,omitempty"`