com.microsoft.azure.management.graphrbac.RequiredResourceAccess 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 java.util.Map;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Specifies the set of OAuth 2.0 permission scopes and app roles under the
* specified resource that an application requires access to. The specified
* OAuth 2.0 permission scopes may be requested by client applications (through
* the requiredResourceAccess collection) when calling a resource application.
* The requiredResourceAccess property of the Application entity is a
* collection of ReqiredResourceAccess.
*/
public class RequiredResourceAccess {
/**
* Unmatched properties from the message are deserialized this collection.
*/
@JsonProperty(value = "")
private Map additionalProperties;
/**
* The list of OAuth2.0 permission scopes and app roles that the
* application requires from the specified resource.
*/
@JsonProperty(value = "resourceAccess", required = true)
private List resourceAccess;
/**
* The unique identifier for the resource that the application requires
* access to. This should be equal to the appId declared on the target
* resource application.
*/
@JsonProperty(value = "resourceAppId")
private String resourceAppId;
/**
* Get the additionalProperties value.
*
* @return the additionalProperties value
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties value.
*
* @param additionalProperties the additionalProperties value to set
* @return the RequiredResourceAccess object itself.
*/
public RequiredResourceAccess withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Get the resourceAccess value.
*
* @return the resourceAccess value
*/
public List resourceAccess() {
return this.resourceAccess;
}
/**
* Set the resourceAccess value.
*
* @param resourceAccess the resourceAccess value to set
* @return the RequiredResourceAccess object itself.
*/
public RequiredResourceAccess withResourceAccess(List resourceAccess) {
this.resourceAccess = resourceAccess;
return this;
}
/**
* Get the resourceAppId value.
*
* @return the resourceAppId value
*/
public String resourceAppId() {
return this.resourceAppId;
}
/**
* Set the resourceAppId value.
*
* @param resourceAppId the resourceAppId value to set
* @return the RequiredResourceAccess object itself.
*/
public RequiredResourceAccess withResourceAppId(String resourceAppId) {
this.resourceAppId = resourceAppId;
return this;
}
}