com.azure.resourcemanager.sql.fluent.models.DatabaseVulnerabilityAssessmentProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The 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.sql.fluent.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.sql.models.VulnerabilityAssessmentRecurringScansProperties;
import java.io.IOException;
/**
* Properties of a database Vulnerability Assessment.
*/
@Fluent
public final class DatabaseVulnerabilityAssessmentProperties
implements JsonSerializable {
/*
* A blob storage container path to hold the scan results (e.g. https://myStorage.blob.core.windows.net/VaScans/).
* It is required if server level vulnerability assessment policy doesn't set
*/
private String storageContainerPath;
/*
* A shared access signature (SAS Key) that has write access to the blob container specified in
* 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified, StorageContainerSasKey is
* required. Applies only if the storage account is not behind a Vnet or a firewall
*/
private String storageContainerSasKey;
/*
* Specifies the identifier key of the storage account for vulnerability assessment scan results. If
* 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required. Applies only if the storage
* account is not behind a Vnet or a firewall
*/
private String storageAccountAccessKey;
/*
* The recurring scans settings
*/
private VulnerabilityAssessmentRecurringScansProperties recurringScans;
/**
* Creates an instance of DatabaseVulnerabilityAssessmentProperties class.
*/
public DatabaseVulnerabilityAssessmentProperties() {
}
/**
* Get the storageContainerPath property: A blob storage container path to hold the scan results (e.g.
* https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy
* doesn't set.
*
* @return the storageContainerPath value.
*/
public String storageContainerPath() {
return this.storageContainerPath;
}
/**
* Set the storageContainerPath property: A blob storage container path to hold the scan results (e.g.
* https://myStorage.blob.core.windows.net/VaScans/). It is required if server level vulnerability assessment policy
* doesn't set.
*
* @param storageContainerPath the storageContainerPath value to set.
* @return the DatabaseVulnerabilityAssessmentProperties object itself.
*/
public DatabaseVulnerabilityAssessmentProperties withStorageContainerPath(String storageContainerPath) {
this.storageContainerPath = storageContainerPath;
return this;
}
/**
* Get the storageContainerSasKey property: A shared access signature (SAS Key) that has write access to the blob
* container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified,
* StorageContainerSasKey is required. Applies only if the storage account is not behind a Vnet or a firewall.
*
* @return the storageContainerSasKey value.
*/
public String storageContainerSasKey() {
return this.storageContainerSasKey;
}
/**
* Set the storageContainerSasKey property: A shared access signature (SAS Key) that has write access to the blob
* container specified in 'storageContainerPath' parameter. If 'storageAccountAccessKey' isn't specified,
* StorageContainerSasKey is required. Applies only if the storage account is not behind a Vnet or a firewall.
*
* @param storageContainerSasKey the storageContainerSasKey value to set.
* @return the DatabaseVulnerabilityAssessmentProperties object itself.
*/
public DatabaseVulnerabilityAssessmentProperties withStorageContainerSasKey(String storageContainerSasKey) {
this.storageContainerSasKey = storageContainerSasKey;
return this;
}
/**
* Get the storageAccountAccessKey property: Specifies the identifier key of the storage account for vulnerability
* assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required.
* Applies only if the storage account is not behind a Vnet or a firewall.
*
* @return the storageAccountAccessKey value.
*/
public String storageAccountAccessKey() {
return this.storageAccountAccessKey;
}
/**
* Set the storageAccountAccessKey property: Specifies the identifier key of the storage account for vulnerability
* assessment scan results. If 'StorageContainerSasKey' isn't specified, storageAccountAccessKey is required.
* Applies only if the storage account is not behind a Vnet or a firewall.
*
* @param storageAccountAccessKey the storageAccountAccessKey value to set.
* @return the DatabaseVulnerabilityAssessmentProperties object itself.
*/
public DatabaseVulnerabilityAssessmentProperties withStorageAccountAccessKey(String storageAccountAccessKey) {
this.storageAccountAccessKey = storageAccountAccessKey;
return this;
}
/**
* Get the recurringScans property: The recurring scans settings.
*
* @return the recurringScans value.
*/
public VulnerabilityAssessmentRecurringScansProperties recurringScans() {
return this.recurringScans;
}
/**
* Set the recurringScans property: The recurring scans settings.
*
* @param recurringScans the recurringScans value to set.
* @return the DatabaseVulnerabilityAssessmentProperties object itself.
*/
public DatabaseVulnerabilityAssessmentProperties
withRecurringScans(VulnerabilityAssessmentRecurringScansProperties recurringScans) {
this.recurringScans = recurringScans;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (recurringScans() != null) {
recurringScans().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("storageContainerPath", this.storageContainerPath);
jsonWriter.writeStringField("storageContainerSasKey", this.storageContainerSasKey);
jsonWriter.writeStringField("storageAccountAccessKey", this.storageAccountAccessKey);
jsonWriter.writeJsonField("recurringScans", this.recurringScans);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of DatabaseVulnerabilityAssessmentProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of DatabaseVulnerabilityAssessmentProperties 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 DatabaseVulnerabilityAssessmentProperties.
*/
public static DatabaseVulnerabilityAssessmentProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
DatabaseVulnerabilityAssessmentProperties deserializedDatabaseVulnerabilityAssessmentProperties
= new DatabaseVulnerabilityAssessmentProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("storageContainerPath".equals(fieldName)) {
deserializedDatabaseVulnerabilityAssessmentProperties.storageContainerPath = reader.getString();
} else if ("storageContainerSasKey".equals(fieldName)) {
deserializedDatabaseVulnerabilityAssessmentProperties.storageContainerSasKey = reader.getString();
} else if ("storageAccountAccessKey".equals(fieldName)) {
deserializedDatabaseVulnerabilityAssessmentProperties.storageAccountAccessKey = reader.getString();
} else if ("recurringScans".equals(fieldName)) {
deserializedDatabaseVulnerabilityAssessmentProperties.recurringScans
= VulnerabilityAssessmentRecurringScansProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedDatabaseVulnerabilityAssessmentProperties;
});
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy