com.microsoft.azure.management.graphrbac.implementation.GetObjectsParametersInner 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.implementation;
import java.util.Map;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Request parameters for the GetObjectsByObjectIds API.
*/
public class GetObjectsParametersInner {
/**
* Unmatched properties from the message are deserialized this collection.
*/
@JsonProperty(value = "")
private Map additionalProperties;
/**
* The requested object IDs.
*/
@JsonProperty(value = "objectIds")
private List objectIds;
/**
* The requested object types.
*/
@JsonProperty(value = "types")
private List types;
/**
* If true, also searches for object IDs in the partner tenant.
*/
@JsonProperty(value = "includeDirectoryObjectReferences", required = true)
private boolean includeDirectoryObjectReferences;
/**
* 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 GetObjectsParametersInner object itself.
*/
public GetObjectsParametersInner withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Get the objectIds value.
*
* @return the objectIds value
*/
public List objectIds() {
return this.objectIds;
}
/**
* Set the objectIds value.
*
* @param objectIds the objectIds value to set
* @return the GetObjectsParametersInner object itself.
*/
public GetObjectsParametersInner withObjectIds(List objectIds) {
this.objectIds = objectIds;
return this;
}
/**
* Get the types value.
*
* @return the types value
*/
public List types() {
return this.types;
}
/**
* Set the types value.
*
* @param types the types value to set
* @return the GetObjectsParametersInner object itself.
*/
public GetObjectsParametersInner withTypes(List types) {
this.types = types;
return this;
}
/**
* Get the includeDirectoryObjectReferences value.
*
* @return the includeDirectoryObjectReferences value
*/
public boolean includeDirectoryObjectReferences() {
return this.includeDirectoryObjectReferences;
}
/**
* Set the includeDirectoryObjectReferences value.
*
* @param includeDirectoryObjectReferences the includeDirectoryObjectReferences value to set
* @return the GetObjectsParametersInner object itself.
*/
public GetObjectsParametersInner withIncludeDirectoryObjectReferences(boolean includeDirectoryObjectReferences) {
this.includeDirectoryObjectReferences = includeDirectoryObjectReferences;
return this;
}
}