All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.security.models.OnPremiseResourceDetails Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 1.0.0
Show newest version
// 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.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;

/**
 * Details of the On Premise resource that was assessed.
 */
@Fluent
public class OnPremiseResourceDetails extends ResourceDetails {
    /*
     * The platform where the assessed resource resides
     */
    private Source source = Source.ON_PREMISE;

    /*
     * Azure resource Id of the workspace the machine is attached to
     */
    private String workspaceId;

    /*
     * The unique Id of the machine
     */
    private String vmuuid;

    /*
     * The oms agent Id installed on the machine
     */
    private String sourceComputerId;

    /*
     * The name of the machine
     */
    private String machineName;

    /**
     * Creates an instance of OnPremiseResourceDetails class.
     */
    public OnPremiseResourceDetails() {
    }

    /**
     * Get the source property: The platform where the assessed resource resides.
     * 
     * @return the source value.
     */
    @Override
    public Source source() {
        return this.source;
    }

    /**
     * Get the workspaceId property: Azure resource Id of the workspace the machine is attached to.
     * 
     * @return the workspaceId value.
     */
    public String workspaceId() {
        return this.workspaceId;
    }

    /**
     * Set the workspaceId property: Azure resource Id of the workspace the machine is attached to.
     * 
     * @param workspaceId the workspaceId value to set.
     * @return the OnPremiseResourceDetails object itself.
     */
    public OnPremiseResourceDetails withWorkspaceId(String workspaceId) {
        this.workspaceId = workspaceId;
        return this;
    }

    /**
     * Get the vmuuid property: The unique Id of the machine.
     * 
     * @return the vmuuid value.
     */
    public String vmuuid() {
        return this.vmuuid;
    }

    /**
     * Set the vmuuid property: The unique Id of the machine.
     * 
     * @param vmuuid the vmuuid value to set.
     * @return the OnPremiseResourceDetails object itself.
     */
    public OnPremiseResourceDetails withVmuuid(String vmuuid) {
        this.vmuuid = vmuuid;
        return this;
    }

    /**
     * Get the sourceComputerId property: The oms agent Id installed on the machine.
     * 
     * @return the sourceComputerId value.
     */
    public String sourceComputerId() {
        return this.sourceComputerId;
    }

    /**
     * Set the sourceComputerId property: The oms agent Id installed on the machine.
     * 
     * @param sourceComputerId the sourceComputerId value to set.
     * @return the OnPremiseResourceDetails object itself.
     */
    public OnPremiseResourceDetails withSourceComputerId(String sourceComputerId) {
        this.sourceComputerId = sourceComputerId;
        return this;
    }

    /**
     * Get the machineName property: The name of the machine.
     * 
     * @return the machineName value.
     */
    public String machineName() {
        return this.machineName;
    }

    /**
     * Set the machineName property: The name of the machine.
     * 
     * @param machineName the machineName value to set.
     * @return the OnPremiseResourceDetails object itself.
     */
    public OnPremiseResourceDetails withMachineName(String machineName) {
        this.machineName = machineName;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        if (workspaceId() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property workspaceId in model OnPremiseResourceDetails"));
        }
        if (vmuuid() == null) {
            throw LOGGER.atError()
                .log(
                    new IllegalArgumentException("Missing required property vmuuid in model OnPremiseResourceDetails"));
        }
        if (sourceComputerId() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property sourceComputerId in model OnPremiseResourceDetails"));
        }
        if (machineName() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property machineName in model OnPremiseResourceDetails"));
        }
    }

    private static final ClientLogger LOGGER = new ClientLogger(OnPremiseResourceDetails.class);

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeStringField("workspaceId", this.workspaceId);
        jsonWriter.writeStringField("vmuuid", this.vmuuid);
        jsonWriter.writeStringField("sourceComputerId", this.sourceComputerId);
        jsonWriter.writeStringField("machineName", this.machineName);
        jsonWriter.writeStringField("source", this.source == null ? null : this.source.toString());
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of OnPremiseResourceDetails from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of OnPremiseResourceDetails if the JsonReader was pointing to an instance of it, or null if
     * it was pointing to JSON null.
     * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
     * @throws IOException If an error occurs while reading the OnPremiseResourceDetails.
     */
    public static OnPremiseResourceDetails fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            String discriminatorValue = null;
            try (JsonReader readerToUse = reader.bufferObject()) {
                readerToUse.nextToken(); // Prepare for reading
                while (readerToUse.nextToken() != JsonToken.END_OBJECT) {
                    String fieldName = readerToUse.getFieldName();
                    readerToUse.nextToken();
                    if ("source".equals(fieldName)) {
                        discriminatorValue = readerToUse.getString();
                        break;
                    } else {
                        readerToUse.skipChildren();
                    }
                }
                // Use the discriminator value to determine which subtype should be deserialized.
                if ("OnPremiseSql".equals(discriminatorValue)) {
                    return OnPremiseSqlResourceDetails.fromJson(readerToUse.reset());
                } else {
                    return fromJsonKnownDiscriminator(readerToUse.reset());
                }
            }
        });
    }

    static OnPremiseResourceDetails fromJsonKnownDiscriminator(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            OnPremiseResourceDetails deserializedOnPremiseResourceDetails = new OnPremiseResourceDetails();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("workspaceId".equals(fieldName)) {
                    deserializedOnPremiseResourceDetails.workspaceId = reader.getString();
                } else if ("vmuuid".equals(fieldName)) {
                    deserializedOnPremiseResourceDetails.vmuuid = reader.getString();
                } else if ("sourceComputerId".equals(fieldName)) {
                    deserializedOnPremiseResourceDetails.sourceComputerId = reader.getString();
                } else if ("machineName".equals(fieldName)) {
                    deserializedOnPremiseResourceDetails.machineName = reader.getString();
                } else if ("source".equals(fieldName)) {
                    deserializedOnPremiseResourceDetails.source = Source.fromString(reader.getString());
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedOnPremiseResourceDetails;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy