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
4 changes: 2 additions & 2 deletions sdk/devtestlabs/mgmt-v2018_09_15/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.2.0</version>
<relativePath>../../parents/azure-arm-parent</relativePath>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
</parent>
<artifactId>azure-mgmt-devtestlabs</artifactId>
<version>1.0.0-beta</version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ interface WithDataDiskStorageInfo {
* @param dataDiskStorageInfo Storage information about the data disks present in the custom image
* @return the next update stage
*/
Update withDataDiskStorageInfoFragment(List<DataDiskStorageTypeInfoFragment> dataDiskStorageInfo);
Update withDataDiskStorageInfo(List<DataDiskStorageTypeInfoFragment> dataDiskStorageInfo);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ interface WithArtifacts {
* @param artifacts The artifacts to be installed on the virtual machine
* @return the next update stage
*/
Update withArtifactFragments(List<ArtifactInstallPropertiesFragment> artifacts);
Update withArtifacts(List<ArtifactInstallPropertiesFragment> artifacts);
}

/**
Expand Down Expand Up @@ -773,7 +773,7 @@ interface WithDataDiskParameters {
* @param dataDiskParameters New or existing data disks to attach to the virtual machine after creation
* @return the next update stage
*/
Update withDataDiskParameterFragments(List<DataDiskPropertiesFragment> dataDiskParameters);
Update withDataDiskParameters(List<DataDiskPropertiesFragment> dataDiskParameters);
}

/**
Expand Down Expand Up @@ -977,7 +977,7 @@ interface WithScheduleParameters {
* @param scheduleParameters Virtual Machine schedules to be created
* @return the next update stage
*/
Update withScheduleParameterFragments(List<ScheduleCreationParameterFragment> scheduleParameters);
Update withScheduleParameters(List<ScheduleCreationParameterFragment> scheduleParameters);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ interface WithEvents {
* @param events The list of event for which this notification is enabled
* @return the next update stage
*/
Update withEventFragments(List<EventFragment> events);
Update withEvents(List<EventFragment> events);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ interface WithAllowedSubnets {
* @param allowedSubnets The allowed subnets of the virtual network
* @return the next update stage
*/
Update withAllowedSubnetFragments(List<SubnetFragment> allowedSubnets);
Update withAllowedSubnets(List<SubnetFragment> allowedSubnets);
}

/**
Expand Down Expand Up @@ -254,7 +254,7 @@ interface WithSubnetOverrides {
* @param subnetOverrides The subnet overrides of the virtual network
* @return the next update stage
*/
Update withSubnetOverrideFragments(List<SubnetOverrideFragment> subnetOverrides);
Update withSubnetOverrides(List<SubnetOverrideFragment> subnetOverrides);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public CustomImageImpl withCustomImagePlan(CustomImagePropertiesFromPlanFragment
}

@Override
public CustomImageImpl withDataDiskStorageInfoFragment(List<DataDiskStorageTypeInfoFragment> dataDiskStorageInfo) {
public CustomImageImpl withDataDiskStorageInfo(List<DataDiskStorageTypeInfoFragment> dataDiskStorageInfo) {
this.updateParameter.withDataDiskStorageInfo(dataDiskStorageInfo);
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -370,13 +370,13 @@ public LabVirtualMachineImpl withArtifactDeploymentStatus(ArtifactDeploymentStat
}

@Override
public LabVirtualMachineImpl withArtifactFragments(List<ArtifactInstallPropertiesFragment> artifacts) {
public LabVirtualMachineImpl withArtifacts(List<ArtifactInstallPropertiesFragment> artifacts) {
this.updateParameter.withArtifacts(artifacts);
return this;
}

@Override
public LabVirtualMachineImpl withDataDiskParameterFragments(List<DataDiskPropertiesFragment> dataDiskParameters) {
public LabVirtualMachineImpl withDataDiskParameters(List<DataDiskPropertiesFragment> dataDiskParameters) {
this.updateParameter.withDataDiskParameters(dataDiskParameters);
return this;
}
Expand All @@ -394,7 +394,7 @@ public LabVirtualMachineImpl withNetworkInterface(NetworkInterfacePropertiesFrag
}

@Override
public LabVirtualMachineImpl withScheduleParameterFragments(List<ScheduleCreationParameterFragment> scheduleParameters) {
public LabVirtualMachineImpl withScheduleParameters(List<ScheduleCreationParameterFragment> scheduleParameters) {
this.updateParameter.withScheduleParameters(scheduleParameters);
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public NotificationChannelImpl withLocation(String location) {
}

@Override
public NotificationChannelImpl withEventFragments(List<EventFragment> events) {
public NotificationChannelImpl withEvents(List<EventFragment> events) {
this.updateParameter.withEvents(events);
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,13 @@ public VirtualNetworkImpl withSubnetOverrides(List<SubnetOverride> subnetOverrid
}

@Override
public VirtualNetworkImpl withAllowedSubnetFragments(List<SubnetFragment> allowedSubnets) {
public VirtualNetworkImpl withAllowedSubnets(List<SubnetFragment> allowedSubnets) {
this.updateParameter.withAllowedSubnets(allowedSubnets);
return this;
}

@Override
public VirtualNetworkImpl withSubnetOverrideFragments(List<SubnetOverrideFragment> subnetOverrides) {
public VirtualNetworkImpl withSubnetOverrides(List<SubnetOverrideFragment> subnetOverrides) {
this.updateParameter.withSubnetOverrides(subnetOverrides);
return this;
}
Expand Down