Class CsmPublishingProfileOptions
- java.lang.Object
-
- com.microsoft.azure.management.appservice.CsmPublishingProfileOptions
-
public class CsmPublishingProfileOptions extends Object
Publishing options for requested profile.
-
-
Constructor Summary
Constructors Constructor Description CsmPublishingProfileOptions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PublishingProfileFormatformat()Get name of the format.BooleanincludeDisasterRecoveryEndpoints()Get include the DisasterRecover endpoint if true.CsmPublishingProfileOptionswithFormat(PublishingProfileFormat format)Set name of the format.CsmPublishingProfileOptionswithIncludeDisasterRecoveryEndpoints(Boolean includeDisasterRecoveryEndpoints)Set include the DisasterRecover endpoint if true.
-
-
-
Method Detail
-
format
public PublishingProfileFormat format()
Get name of the format. Valid values are: FileZilla3 WebDeploy -- default Ftp. Possible values include: 'FileZilla3', 'WebDeploy', 'Ftp'.- Returns:
- the format value
-
withFormat
public CsmPublishingProfileOptions withFormat(PublishingProfileFormat format)
Set name of the format. Valid values are: FileZilla3 WebDeploy -- default Ftp. Possible values include: 'FileZilla3', 'WebDeploy', 'Ftp'.- Parameters:
format- the format value to set- Returns:
- the CsmPublishingProfileOptions object itself.
-
includeDisasterRecoveryEndpoints
public Boolean includeDisasterRecoveryEndpoints()
Get include the DisasterRecover endpoint if true.- Returns:
- the includeDisasterRecoveryEndpoints value
-
withIncludeDisasterRecoveryEndpoints
public CsmPublishingProfileOptions withIncludeDisasterRecoveryEndpoints(Boolean includeDisasterRecoveryEndpoints)
Set include the DisasterRecover endpoint if true.- Parameters:
includeDisasterRecoveryEndpoints- the includeDisasterRecoveryEndpoints value to set- Returns:
- the CsmPublishingProfileOptions object itself.
-
-