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.microsoft.azure.management.appservice.CsmOperationDisplay; import com.microsoft.azure.management.appservice.CsmOperationDescriptionProperties; import com.fasterxml.jackson.annotation.JsonProperty;
Description of an operation available for Microsoft.Web resource provider.
/** * Description of an operation available for Microsoft.Web resource provider. */
public class CsmOperationDescriptionInner {
The name property.
/** * The name property. */
@JsonProperty(value = "name") private String name;
The display property.
/** * The display property. */
@JsonProperty(value = "display") private CsmOperationDisplay display;
The origin property.
/** * The origin property. */
@JsonProperty(value = "origin") private String origin;
The properties property.
/** * The properties property. */
@JsonProperty(value = "properties") private CsmOperationDescriptionProperties properties;
Get the name value.
Returns:the name value
/** * Get the name value. * * @return the name value */
public String name() { return this.name; }
Set the name value.
Params:
  • name – the name value to set
Returns:the CsmOperationDescriptionInner object itself.
/** * Set the name value. * * @param name the name value to set * @return the CsmOperationDescriptionInner object itself. */
public CsmOperationDescriptionInner withName(String name) { this.name = name; return this; }
Get the display value.
Returns:the display value
/** * Get the display value. * * @return the display value */
public CsmOperationDisplay display() { return this.display; }
Set the display value.
Params:
  • display – the display value to set
Returns:the CsmOperationDescriptionInner object itself.
/** * Set the display value. * * @param display the display value to set * @return the CsmOperationDescriptionInner object itself. */
public CsmOperationDescriptionInner withDisplay(CsmOperationDisplay display) { this.display = display; return this; }
Get the origin value.
Returns:the origin value
/** * Get the origin value. * * @return the origin value */
public String origin() { return this.origin; }
Set the origin value.
Params:
  • origin – the origin value to set
Returns:the CsmOperationDescriptionInner object itself.
/** * Set the origin value. * * @param origin the origin value to set * @return the CsmOperationDescriptionInner object itself. */
public CsmOperationDescriptionInner withOrigin(String origin) { this.origin = origin; return this; }
Get the properties value.
Returns:the properties value
/** * Get the properties value. * * @return the properties value */
public CsmOperationDescriptionProperties properties() { return this.properties; }
Set the properties value.
Params:
  • properties – the properties value to set
Returns:the CsmOperationDescriptionInner object itself.
/** * Set the properties value. * * @param properties the properties value to set * @return the CsmOperationDescriptionInner object itself. */
public CsmOperationDescriptionInner withProperties(CsmOperationDescriptionProperties properties) { this.properties = properties; return this; } }