Class MSDeployCore
java.lang.Object
com.azure.resourcemanager.appservice.models.MSDeployCore
- All Implemented Interfaces:
com.azure.json.JsonSerializable<MSDeployCore>
- Direct Known Subclasses:
MSDeployProperties
MSDeploy ARM PUT core information.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the appOffline property: Sets the AppOffline rule while the MSDeploy operation executes.Get the connectionString property: SQL Connection String.dbType()
Get the dbType property: Database Type.static MSDeployCore
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of MSDeployCore from the JsonReader.Get the packageUri property: Package URI.Get the setParameters property: MSDeploy Parameters.Get the setParametersXmlFileUri property: URI of MSDeploy Parameters file.Get the skipAppData property: Controls whether the MSDeploy operation skips the App_Data directory.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) void
validate()
Validates the instance.withAppOffline
(Boolean appOffline) Set the appOffline property: Sets the AppOffline rule while the MSDeploy operation executes.withConnectionString
(String connectionString) Set the connectionString property: SQL Connection String.withDbType
(String dbType) Set the dbType property: Database Type.withPackageUri
(String packageUri) Set the packageUri property: Package URI.withSetParameters
(Map<String, String> setParameters) Set the setParameters property: MSDeploy Parameters.withSetParametersXmlFileUri
(String setParametersXmlFileUri) Set the setParametersXmlFileUri property: URI of MSDeploy Parameters file.withSkipAppData
(Boolean skipAppData) Set the skipAppData property: Controls whether the MSDeploy operation skips the App_Data directory.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
MSDeployCore
public MSDeployCore()Creates an instance of MSDeployCore class.
-
-
Method Details
-
packageUri
Get the packageUri property: Package URI.- Returns:
- the packageUri value.
-
withPackageUri
Set the packageUri property: Package URI.- Parameters:
packageUri
- the packageUri value to set.- Returns:
- the MSDeployCore object itself.
-
connectionString
Get the connectionString property: SQL Connection String.- Returns:
- the connectionString value.
-
withConnectionString
Set the connectionString property: SQL Connection String.- Parameters:
connectionString
- the connectionString value to set.- Returns:
- the MSDeployCore object itself.
-
dbType
Get the dbType property: Database Type.- Returns:
- the dbType value.
-
withDbType
Set the dbType property: Database Type.- Parameters:
dbType
- the dbType value to set.- Returns:
- the MSDeployCore object itself.
-
setParametersXmlFileUri
Get the setParametersXmlFileUri property: URI of MSDeploy Parameters file. Must not be set if SetParameters is used.- Returns:
- the setParametersXmlFileUri value.
-
withSetParametersXmlFileUri
Set the setParametersXmlFileUri property: URI of MSDeploy Parameters file. Must not be set if SetParameters is used.- Parameters:
setParametersXmlFileUri
- the setParametersXmlFileUri value to set.- Returns:
- the MSDeployCore object itself.
-
setParameters
Get the setParameters property: MSDeploy Parameters. Must not be set if SetParametersXmlFileUri is used.- Returns:
- the setParameters value.
-
withSetParameters
Set the setParameters property: MSDeploy Parameters. Must not be set if SetParametersXmlFileUri is used.- Parameters:
setParameters
- the setParameters value to set.- Returns:
- the MSDeployCore object itself.
-
skipAppData
Get the skipAppData property: Controls whether the MSDeploy operation skips the App_Data directory. If set to <code>true</code>, the existing App_Data directory on the destination will not be deleted, and any App_Data directory in the source will be ignored. Setting is <code>false</code> by default.- Returns:
- the skipAppData value.
-
withSkipAppData
Set the skipAppData property: Controls whether the MSDeploy operation skips the App_Data directory. If set to <code>true</code>, the existing App_Data directory on the destination will not be deleted, and any App_Data directory in the source will be ignored. Setting is <code>false</code> by default.- Parameters:
skipAppData
- the skipAppData value to set.- Returns:
- the MSDeployCore object itself.
-
appOffline
Get the appOffline property: Sets the AppOffline rule while the MSDeploy operation executes. Setting is <code>false</code> by default.- Returns:
- the appOffline value.
-
withAppOffline
Set the appOffline property: Sets the AppOffline rule while the MSDeploy operation executes. Setting is <code>false</code> by default.- Parameters:
appOffline
- the appOffline value to set.- Returns:
- the MSDeployCore object itself.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<MSDeployCore>
- Throws:
IOException
-
fromJson
Reads an instance of MSDeployCore from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of MSDeployCore if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IOException
- If an error occurs while reading the MSDeployCore.
-