com.microsoft.azure.management.resources.FeatureProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-resources Show documentation
Show all versions of azure-mgmt-resources Show documentation
This package contains Microsoft Azure Resource Management SDK.
/**
* 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.resources;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Information about feature.
*/
public class FeatureProperties {
/**
* The registration state of the feature for the subscription.
*/
@JsonProperty(value = "state")
private String state;
/**
* Get the state value.
*
* @return the state value
*/
public String state() {
return this.state;
}
/**
* Set the state value.
*
* @param state the state value to set
* @return the FeatureProperties object itself.
*/
public FeatureProperties withState(String state) {
this.state = state;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy