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

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

// 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;

/**
 * A VM scanning configuration for a security offering of a Aws environment.
 */
@Fluent
public class VmScannersAws extends VmScannersBase {
    /*
     * The cloud role ARN in AWS for this feature
     */
    private String cloudRoleArn;

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

    /**
     * Get the cloudRoleArn property: The cloud role ARN in AWS for this feature.
     * 
     * @return the cloudRoleArn value.
     */
    public String cloudRoleArn() {
        return this.cloudRoleArn;
    }

    /**
     * Set the cloudRoleArn property: The cloud role ARN in AWS for this feature.
     * 
     * @param cloudRoleArn the cloudRoleArn value to set.
     * @return the VmScannersAws object itself.
     */
    public VmScannersAws withCloudRoleArn(String cloudRoleArn) {
        this.cloudRoleArn = cloudRoleArn;
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public VmScannersAws withEnabled(Boolean enabled) {
        super.withEnabled(enabled);
        return this;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public VmScannersAws withConfiguration(VmScannersBaseConfiguration configuration) {
        super.withConfiguration(configuration);
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    @Override
    public void validate() {
        if (configuration() != null) {
            configuration().validate();
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeBooleanField("enabled", enabled());
        jsonWriter.writeJsonField("configuration", configuration());
        jsonWriter.writeStringField("cloudRoleArn", this.cloudRoleArn);
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of VmScannersAws from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of VmScannersAws 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 VmScannersAws.
     */
    public static VmScannersAws fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            VmScannersAws deserializedVmScannersAws = new VmScannersAws();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("enabled".equals(fieldName)) {
                    deserializedVmScannersAws.withEnabled(reader.getNullable(JsonReader::getBoolean));
                } else if ("configuration".equals(fieldName)) {
                    deserializedVmScannersAws.withConfiguration(VmScannersBaseConfiguration.fromJson(reader));
                } else if ("cloudRoleArn".equals(fieldName)) {
                    deserializedVmScannersAws.cloudRoleArn = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedVmScannersAws;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy