com.microsoft.azure.management.graphrbac.ProviderOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-graph-rbac Show documentation
Show all versions of azure-mgmt-graph-rbac Show documentation
This package contains Microsoft Azure Graph RBAC Management SDK. This package has been deprecated. A replacement package com.azure.resourcemanager:azure-resourcemanager-authorization is available as of 31-March-2022. We strongly encourage you to upgrade to continue receiving updates. See Migration Guide https://aka.ms/java-track2-migration-guide for guidance on upgrading. Refer to our deprecation policy https://azure.github.io/azure-sdk/policies_support.html for more details.
/**
* 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.graphrbac;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Operation.
*/
public class ProviderOperation {
/**
* The operation name.
*/
@JsonProperty(value = "name")
private String name;
/**
* The operation display name.
*/
@JsonProperty(value = "displayName")
private String displayName;
/**
* The operation description.
*/
@JsonProperty(value = "description")
private String description;
/**
* The operation origin.
*/
@JsonProperty(value = "origin")
private String origin;
/**
* The operation properties.
*/
@JsonProperty(value = "properties")
private Object properties;
/**
* The dataAction flag to specify the operation type.
*/
@JsonProperty(value = "isDataAction")
private Boolean isDataAction;
/**
* Get the name value.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set the name value.
*
* @param name the name value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withName(String name) {
this.name = name;
return this;
}
/**
* Get the displayName value.
*
* @return the displayName value
*/
public String displayName() {
return this.displayName;
}
/**
* Set the displayName value.
*
* @param displayName the displayName value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* Get the description value.
*
* @return the description value
*/
public String description() {
return this.description;
}
/**
* Set the description value.
*
* @param description the description value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withDescription(String description) {
this.description = description;
return this;
}
/**
* Get the origin value.
*
* @return the origin value
*/
public String origin() {
return this.origin;
}
/**
* Set the origin value.
*
* @param origin the origin value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withOrigin(String origin) {
this.origin = origin;
return this;
}
/**
* Get the properties value.
*
* @return the properties value
*/
public Object properties() {
return this.properties;
}
/**
* Set the properties value.
*
* @param properties the properties value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withProperties(Object properties) {
this.properties = properties;
return this;
}
/**
* Get the isDataAction value.
*
* @return the isDataAction value
*/
public Boolean isDataAction() {
return this.isDataAction;
}
/**
* Set the isDataAction value.
*
* @param isDataAction the isDataAction value to set
* @return the ProviderOperation object itself.
*/
public ProviderOperation withIsDataAction(Boolean isDataAction) {
this.isDataAction = isDataAction;
return this;
}
}