Skip to content

Commit

Permalink
Generated from edd74f0a1be6f17caa185525a63e594aef956acc (#222)
Browse files Browse the repository at this point in the history
Addressed review comments.
  • Loading branch information
openapi-sdkautomation[bot] authored Aug 28, 2019
1 parent 47f8b49 commit 425537e
Show file tree
Hide file tree
Showing 5 changed files with 438 additions and 15 deletions.
10 changes: 5 additions & 5 deletions features/resource-manager/v2015_12_01/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-arm-parent</artifactId>
<version>1.1.0</version>
<relativePath>../../../pom.management.xml</relativePath>
<version>0.0.3-beta</version>
<relativePath>../../../pom.xml</relativePath>
</parent>
<artifactId>azure-mgmt-features</artifactId>
<version>1.0.0-beta</version>
<packaging>jar</packaging>
<name>Microsoft Azure SDK for Features Management</name>
<description>This package contains Microsoft Features Management SDK.</description>
<url>https://github.com/Azure/azure-libraries-for-java</url>
<url>https://github.com/Azure/azure-sdk-for-java</url>
<licenses>
<license>
<name>The MIT License (MIT)</name>
Expand All @@ -28,8 +28,8 @@
</license>
</licenses>
<scm>
<url>scm:git:https://github.com/Azure/azure-libraries-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-libraries-for-java.git</connection>
<url>scm:git:https://github.com/Azure/azure-sdk-for-java</url>
<connection>scm:git:git@github.com:Azure/azure-sdk-for-java.git</connection>
<tag>HEAD</tag>
</scm>
<properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
/**
* 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.features.v2015_12_01;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
* The object that represents the operation.
*/
public class OperationDisplay {
/**
* Service provider: Microsoft.Features.
*/
@JsonProperty(value = "provider")
private String provider;

/**
* Resource on which the operation is performed: Profile, endpoint, etc.
*/
@JsonProperty(value = "resource")
private String resource;

/**
* Operation type: Read, write, delete, etc.
*/
@JsonProperty(value = "operation")
private String operation;

/**
* Get service provider: Microsoft.Features.
*
* @return the provider value
*/
public String provider() {
return this.provider;
}

/**
* Set service provider: Microsoft.Features.
*
* @param provider the provider value to set
* @return the OperationDisplay object itself.
*/
public OperationDisplay withProvider(String provider) {
this.provider = provider;
return this;
}

/**
* Get resource on which the operation is performed: Profile, endpoint, etc.
*
* @return the resource value
*/
public String resource() {
return this.resource;
}

/**
* Set resource on which the operation is performed: Profile, endpoint, etc.
*
* @param resource the resource value to set
* @return the OperationDisplay object itself.
*/
public OperationDisplay withResource(String resource) {
this.resource = resource;
return this;
}

/**
* Get operation type: Read, write, delete, etc.
*
* @return the operation value
*/
public String operation() {
return this.operation;
}

/**
* Set operation type: Read, write, delete, etc.
*
* @param operation the operation value to set
* @return the OperationDisplay object itself.
*/
public OperationDisplay withOperation(String operation) {
this.operation = operation;
return this;
}

}
Loading

0 comments on commit 425537e

Please sign in to comment.