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; import com.fasterxml.jackson.annotation.JsonProperty;
Properties available for a Microsoft.Web resource provider operation.
/** * Properties available for a Microsoft.Web resource provider operation. */
public class CsmOperationDescriptionProperties {
The serviceSpecification property.
/** * The serviceSpecification property. */
@JsonProperty(value = "serviceSpecification") private ServiceSpecification serviceSpecification;
Get the serviceSpecification value.
Returns:the serviceSpecification value
/** * Get the serviceSpecification value. * * @return the serviceSpecification value */
public ServiceSpecification serviceSpecification() { return this.serviceSpecification; }
Set the serviceSpecification value.
Params:
  • serviceSpecification – the serviceSpecification value to set
Returns:the CsmOperationDescriptionProperties object itself.
/** * Set the serviceSpecification value. * * @param serviceSpecification the serviceSpecification value to set * @return the CsmOperationDescriptionProperties object itself. */
public CsmOperationDescriptionProperties withServiceSpecification(ServiceSpecification serviceSpecification) { this.serviceSpecification = serviceSpecification; return this; } }