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;
Diagnostics for an App Service Environment.
/** * Diagnostics for an App Service Environment. */
public class HostingEnvironmentDiagnosticsInner {
Name/identifier of the diagnostics.
/** * Name/identifier of the diagnostics. */
@JsonProperty(value = "name") private String name;
Diagnostics output.
/** * Diagnostics output. */
@JsonProperty(value = "diagnosticsOutput") private String diagnosticsOutput;
Get name/identifier of the diagnostics.
Returns:the name value
/** * Get name/identifier of the diagnostics. * * @return the name value */
public String name() { return this.name; }
Set name/identifier of the diagnostics.
Params:
  • name – the name value to set
Returns:the HostingEnvironmentDiagnosticsInner object itself.
/** * Set name/identifier of the diagnostics. * * @param name the name value to set * @return the HostingEnvironmentDiagnosticsInner object itself. */
public HostingEnvironmentDiagnosticsInner withName(String name) { this.name = name; return this; }
Get diagnostics output.
Returns:the diagnosticsOutput value
/** * Get diagnostics output. * * @return the diagnosticsOutput value */
public String diagnosticsOutput() { return this.diagnosticsOutput; }
Set diagnostics output.
Params:
  • diagnosticsOutput – the diagnosticsOutput value to set
Returns:the HostingEnvironmentDiagnosticsInner object itself.
/** * Set diagnostics output. * * @param diagnosticsOutput the diagnosticsOutput value to set * @return the HostingEnvironmentDiagnosticsInner object itself. */
public HostingEnvironmentDiagnosticsInner withDiagnosticsOutput(String diagnosticsOutput) { this.diagnosticsOutput = diagnosticsOutput; return this; } }