com.azure.resourcemanager.security.models.CustomEntityStoreAssignmentRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-security Show documentation
Show all versions of azure-resourcemanager-security Show documentation
This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.security.fluent.models.CustomEntityStoreAssignmentRequestProperties;
import java.io.IOException;
/**
* describes the custom entity store assignment request.
*/
@Fluent
public final class CustomEntityStoreAssignmentRequest implements JsonSerializable {
/*
* describes properties of custom entity store assignment request
*/
private CustomEntityStoreAssignmentRequestProperties innerProperties;
/**
* Creates an instance of CustomEntityStoreAssignmentRequest class.
*/
public CustomEntityStoreAssignmentRequest() {
}
/**
* Get the innerProperties property: describes properties of custom entity store assignment request.
*
* @return the innerProperties value.
*/
private CustomEntityStoreAssignmentRequestProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the principal property: The principal assigned with entity store. If not provided, will use caller principal.
* Format of principal is: [AAD type]=[PrincipalObjectId];[TenantId].
*
* @return the principal value.
*/
public String principal() {
return this.innerProperties() == null ? null : this.innerProperties().principal();
}
/**
* Set the principal property: The principal assigned with entity store. If not provided, will use caller principal.
* Format of principal is: [AAD type]=[PrincipalObjectId];[TenantId].
*
* @param principal the principal value to set.
* @return the CustomEntityStoreAssignmentRequest object itself.
*/
public CustomEntityStoreAssignmentRequest withPrincipal(String principal) {
if (this.innerProperties() == null) {
this.innerProperties = new CustomEntityStoreAssignmentRequestProperties();
}
this.innerProperties().withPrincipal(principal);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of CustomEntityStoreAssignmentRequest from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of CustomEntityStoreAssignmentRequest if the JsonReader was pointing to an instance of it, or
* null if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the CustomEntityStoreAssignmentRequest.
*/
public static CustomEntityStoreAssignmentRequest fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
CustomEntityStoreAssignmentRequest deserializedCustomEntityStoreAssignmentRequest
= new CustomEntityStoreAssignmentRequest();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("properties".equals(fieldName)) {
deserializedCustomEntityStoreAssignmentRequest.innerProperties
= CustomEntityStoreAssignmentRequestProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedCustomEntityStoreAssignmentRequest;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy