Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.appservice.implementation; import com.fasterxml.jackson.annotation.JsonProperty; import com.microsoft.rest.serializer.JsonFlatten; import com.microsoft.azure.management.appservice.ProxyOnlyResource;
Used for getting PHP error logging flag.
/** * Used for getting PHP error logging flag. */
@JsonFlatten public class SitePhpErrorLogFlagInner extends ProxyOnlyResource {
Local log_errors setting.
/** * Local log_errors setting. */
@JsonProperty(value = "properties.localLogErrors") private String localLogErrors;
Master log_errors setting.
/** * Master log_errors setting. */
@JsonProperty(value = "properties.masterLogErrors") private String masterLogErrors;
Local log_errors_max_len setting.
/** * Local log_errors_max_len setting. */
@JsonProperty(value = "properties.localLogErrorsMaxLength") private String localLogErrorsMaxLength;
Master log_errors_max_len setting.
/** * Master log_errors_max_len setting. */
@JsonProperty(value = "properties.masterLogErrorsMaxLength") private String masterLogErrorsMaxLength;
Get local log_errors setting.
Returns:the localLogErrors value
/** * Get local log_errors setting. * * @return the localLogErrors value */
public String localLogErrors() { return this.localLogErrors; }
Set local log_errors setting.
Params:
  • localLogErrors – the localLogErrors value to set
Returns:the SitePhpErrorLogFlagInner object itself.
/** * Set local log_errors setting. * * @param localLogErrors the localLogErrors value to set * @return the SitePhpErrorLogFlagInner object itself. */
public SitePhpErrorLogFlagInner withLocalLogErrors(String localLogErrors) { this.localLogErrors = localLogErrors; return this; }
Get master log_errors setting.
Returns:the masterLogErrors value
/** * Get master log_errors setting. * * @return the masterLogErrors value */
public String masterLogErrors() { return this.masterLogErrors; }
Set master log_errors setting.
Params:
  • masterLogErrors – the masterLogErrors value to set
Returns:the SitePhpErrorLogFlagInner object itself.
/** * Set master log_errors setting. * * @param masterLogErrors the masterLogErrors value to set * @return the SitePhpErrorLogFlagInner object itself. */
public SitePhpErrorLogFlagInner withMasterLogErrors(String masterLogErrors) { this.masterLogErrors = masterLogErrors; return this; }
Get local log_errors_max_len setting.
Returns:the localLogErrorsMaxLength value
/** * Get local log_errors_max_len setting. * * @return the localLogErrorsMaxLength value */
public String localLogErrorsMaxLength() { return this.localLogErrorsMaxLength; }
Set local log_errors_max_len setting.
Params:
  • localLogErrorsMaxLength – the localLogErrorsMaxLength value to set
Returns:the SitePhpErrorLogFlagInner object itself.
/** * Set local log_errors_max_len setting. * * @param localLogErrorsMaxLength the localLogErrorsMaxLength value to set * @return the SitePhpErrorLogFlagInner object itself. */
public SitePhpErrorLogFlagInner withLocalLogErrorsMaxLength(String localLogErrorsMaxLength) { this.localLogErrorsMaxLength = localLogErrorsMaxLength; return this; }
Get master log_errors_max_len setting.
Returns:the masterLogErrorsMaxLength value
/** * Get master log_errors_max_len setting. * * @return the masterLogErrorsMaxLength value */
public String masterLogErrorsMaxLength() { return this.masterLogErrorsMaxLength; }
Set master log_errors_max_len setting.
Params:
  • masterLogErrorsMaxLength – the masterLogErrorsMaxLength value to set
Returns:the SitePhpErrorLogFlagInner object itself.
/** * Set master log_errors_max_len setting. * * @param masterLogErrorsMaxLength the masterLogErrorsMaxLength value to set * @return the SitePhpErrorLogFlagInner object itself. */
public SitePhpErrorLogFlagInner withMasterLogErrorsMaxLength(String masterLogErrorsMaxLength) { this.masterLogErrorsMaxLength = masterLogErrorsMaxLength; return this; } }