FunctionsDeploymentStorage Class
- java.
lang. Object - com.
azure. resourcemanager. appservice. models. FunctionsDeploymentStorage
- com.
Implements
public final class FunctionsDeploymentStorage
implements JsonSerializable<FunctionsDeploymentStorage>
Storage for deployed package used by the function app.
Constructor Summary
Constructor | Description |
---|---|
FunctionsDeploymentStorage() |
Creates an instance of Functions |
Method Summary
Modifier and Type | Method and Description |
---|---|
Functions |
authentication()
Get the authentication property: Authentication method to access the storage account for deployment. |
static
Functions |
fromJson(JsonReader jsonReader)
Reads an instance of Functions |
Json |
toJson(JsonWriter jsonWriter) |
Functions |
type()
Get the type property: Property to select Azure Storage type. |
void |
validate()
Validates the instance. |
String |
value()
Get the value property: Property to set the URL for the selected Azure Storage type. |
Functions |
withAuthentication(FunctionsDeploymentStorageAuthentication authentication)
Set the authentication property: Authentication method to access the storage account for deployment. |
Functions |
withType(FunctionsDeploymentStorageType type)
Set the type property: Property to select Azure Storage type. |
Functions |
withValue(String value)
Set the value property: Property to set the URL for the selected Azure Storage type. |
Methods inherited from java.lang.Object
Constructor Details
FunctionsDeploymentStorage
public FunctionsDeploymentStorage()
Creates an instance of FunctionsDeploymentStorage class.
Method Details
authentication
public FunctionsDeploymentStorageAuthentication authentication()
Get the authentication property: Authentication method to access the storage account for deployment.
Returns:
fromJson
public static FunctionsDeploymentStorage fromJson(JsonReader jsonReader)
Reads an instance of FunctionsDeploymentStorage from the JsonReader.
Parameters:
Returns:
Throws:
toJson
type
public FunctionsDeploymentStorageType type()
Get the type property: Property to select Azure Storage type. Available options: blobContainer.
Returns:
validate
public void validate()
Validates the instance.
value
public String value()
Get the value property: Property to set the URL for the selected Azure Storage type. Example: For blobContainer, the value could be https://.blob.core.windows.net/.
Returns:
withAuthentication
public FunctionsDeploymentStorage withAuthentication(FunctionsDeploymentStorageAuthentication authentication)
Set the authentication property: Authentication method to access the storage account for deployment.
Parameters:
Returns:
withType
public FunctionsDeploymentStorage withType(FunctionsDeploymentStorageType type)
Set the type property: Property to select Azure Storage type. Available options: blobContainer.
Parameters:
Returns:
withValue
public FunctionsDeploymentStorage withValue(String value)
Set the value property: Property to set the URL for the selected Azure Storage type. Example: For blobContainer, the value could be https://.blob.core.windows.net/.
Parameters:
Returns:
Applies to
Azure SDK for Java