forked from Azure/azure-sdk-for-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from edd74f0a1be6f17caa185525a63e594aef956acc (#222)
Addressed review comments.
- Loading branch information
1 parent
47f8b49
commit 425537e
Showing
5 changed files
with
438 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
...1/src/main/java/com/microsoft/azure/management/features/v2015_12_01/OperationDisplay.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} |
Oops, something went wrong.