Class ApplicationLogsConfig
- java.lang.Object
-
- com.microsoft.azure.management.appservice.ApplicationLogsConfig
-
public class ApplicationLogsConfig extends Object
Application logs configuration.
-
-
Constructor Summary
Constructors Constructor Description ApplicationLogsConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AzureBlobStorageApplicationLogsConfigazureBlobStorage()Get application logs to blob storage configuration.AzureTableStorageApplicationLogsConfigazureTableStorage()Get application logs to azure table storage configuration.FileSystemApplicationLogsConfigfileSystem()Get application logs to file system configuration.ApplicationLogsConfigwithAzureBlobStorage(AzureBlobStorageApplicationLogsConfig azureBlobStorage)Set application logs to blob storage configuration.ApplicationLogsConfigwithAzureTableStorage(AzureTableStorageApplicationLogsConfig azureTableStorage)Set application logs to azure table storage configuration.ApplicationLogsConfigwithFileSystem(FileSystemApplicationLogsConfig fileSystem)Set application logs to file system configuration.
-
-
-
Method Detail
-
fileSystem
public FileSystemApplicationLogsConfig fileSystem()
Get application logs to file system configuration.- Returns:
- the fileSystem value
-
withFileSystem
public ApplicationLogsConfig withFileSystem(FileSystemApplicationLogsConfig fileSystem)
Set application logs to file system configuration.- Parameters:
fileSystem- the fileSystem value to set- Returns:
- the ApplicationLogsConfig object itself.
-
azureTableStorage
public AzureTableStorageApplicationLogsConfig azureTableStorage()
Get application logs to azure table storage configuration.- Returns:
- the azureTableStorage value
-
withAzureTableStorage
public ApplicationLogsConfig withAzureTableStorage(AzureTableStorageApplicationLogsConfig azureTableStorage)
Set application logs to azure table storage configuration.- Parameters:
azureTableStorage- the azureTableStorage value to set- Returns:
- the ApplicationLogsConfig object itself.
-
azureBlobStorage
public AzureBlobStorageApplicationLogsConfig azureBlobStorage()
Get application logs to blob storage configuration.- Returns:
- the azureBlobStorage value
-
withAzureBlobStorage
public ApplicationLogsConfig withAzureBlobStorage(AzureBlobStorageApplicationLogsConfig azureBlobStorage)
Set application logs to blob storage configuration.- Parameters:
azureBlobStorage- the azureBlobStorage value to set- Returns:
- the ApplicationLogsConfig object itself.
-
-